Skip to content
This repository was archived by the owner on Dec 28, 2024. It is now read-only.

Commit 82e0af5

Browse files
committed
Added maven build files
1 parent d3057a0 commit 82e0af5

3 files changed

Lines changed: 78 additions & 0 deletions

File tree

  • Clipper Console/target/classes/META-INF/maven/de.lighti/ClipperConsole
  • Clipper GUI/target/classes/META-INF/maven/de.lighti/ClipperGUI
  • Clipper/target/classes/META-INF/maven/de.lighti/Clipper
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>de.lighti</groupId>
4+
<artifactId>ClipperConsole</artifactId>
5+
<version>6.4.2</version>
6+
<name>Clipper Console Application</name>
7+
<description>A command line tool to read and process polygon files</description>
8+
<build>
9+
<sourceDirectory>src</sourceDirectory>
10+
<plugins>
11+
<plugin>
12+
<artifactId>maven-compiler-plugin</artifactId>
13+
<version>3.5.1</version>
14+
<configuration>
15+
<source>1.8</source>
16+
<target>1.8</target>
17+
</configuration>
18+
</plugin>
19+
</plugins>
20+
</build>
21+
<dependencies>
22+
<dependency>
23+
<groupId>de.lighti</groupId>
24+
<artifactId>Clipper</artifactId>
25+
<version>6.4.2</version>
26+
</dependency>
27+
</dependencies>
28+
</project>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>de.lighti</groupId>
4+
<artifactId>ClipperGUI</artifactId>
5+
<version>6.4.2</version>
6+
<name>Clipper GUI Application</name>
7+
<description>A swing-based application to visualize the various operations of the Clipper library</description>
8+
<build>
9+
<sourceDirectory>src</sourceDirectory>
10+
<plugins>
11+
<plugin>
12+
<artifactId>maven-compiler-plugin</artifactId>
13+
<version>3.5.1</version>
14+
<configuration>
15+
<source>1.8</source>
16+
<target>1.8</target>
17+
</configuration>
18+
</plugin>
19+
</plugins>
20+
</build>
21+
<dependencies>
22+
<dependency>
23+
<groupId>de.lighti</groupId>
24+
<artifactId>Clipper</artifactId>
25+
<version>6.4.2</version>
26+
</dependency>
27+
</dependencies>
28+
</project>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>de.lighti</groupId>
5+
<artifactId>Clipper</artifactId>
6+
<version>6.4.2</version>
7+
<name>A Polygon clipper for Java</name>
8+
<description>Polygon Clipper is a library to execute various boolean operations (Union, Difference, XOR, etc.) on arbitrary 2D polygons, e.g. calculate the area in which two polygons overlap. It comes with two Demo applications, one for the console and one using a Swing based GUI.</description>
9+
<build>
10+
<sourceDirectory>src</sourceDirectory>
11+
<plugins>
12+
<plugin>
13+
<artifactId>maven-compiler-plugin</artifactId>
14+
<version>3.5.1</version>
15+
<configuration>
16+
<source>1.8</source>
17+
<target>1.8</target>
18+
</configuration>
19+
</plugin>
20+
</plugins>
21+
</build>
22+
</project>

0 commit comments

Comments
 (0)