source: osm/applications/editors/josm/plugins/jts/pom.xml@ 36348

Last change on this file since 36348 was 36348, checked in by taylor.smock, 2 months ago

Drop most ivy files

This is mostly to ensure there is one place for dependency updates to occur, not
two.

lwjgl and geotools did not have their ivy files dropped, since there was a diff
between ivy and maven dependency builds. This is most likely due to dependency
exclusions. The geotools pom.xml now has all the exclusions from the ivy.xml file
now.

jts also had a diff between ivy and maven dependency builds, but the missing
files were test files (specifically, *Test.class) and test related files.

This additionally bumps the minimum JOSM version for everything that had an
ivy.xml file to r19044 for rebuild purposes (r19044 is Java 11+ only).

File size: 2.4 KB
Line 
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 <parent>
5 <groupId>org.openstreetmap.josm.plugins</groupId>
6 <artifactId>plugin-root</artifactId>
7 <version>SNAPSHOT</version>
8 </parent>
9 <artifactId>jts</artifactId>
10
11 <developers>
12 <developer>
13 <name>Josh Doe</name>
14 <email>josh@joshdoe.com</email>
15 </developer>
16 </developers>
17 <properties>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>19044</plugin.main.version>
20
21 <plugin.author>Josh Doe &lt;josh@joshdoe.com&gt;</plugin.author>
22 <plugin.class>org.openstreetmap.josm.plugins.jts.JTSPlugin</plugin.class>
23 <plugin.description>Provides Java Topology Suite (JTS) library and related utilities. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
24 <plugin.icon>images/jts.png</plugin.icon>
25 <plugin.canloadatruntime>true</plugin.canloadatruntime>
26 <plugin.stage>10</plugin.stage>
27 <jts.version>1.19.0</jts.version>
28 </properties>
29 <dependencies>
30 <dependency>
31 <groupId>org.locationtech.jts</groupId>
32 <artifactId>jts-core</artifactId>
33 <version>${jts.version}</version>
34 <scope>compile</scope>
35 </dependency>
36 <dependency>
37 <groupId>org.locationtech.jts.io</groupId>
38 <artifactId>jts-io-common</artifactId>
39 <version>${jts.version}</version>
40 <scope>compile</scope>
41 </dependency>
42 </dependencies>
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-jar-plugin</artifactId>
48 <configuration>
49 <archive>
50 <manifestEntries>
51 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
52 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
53 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
54 </manifestEntries>
55 </archive>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60</project>
Note: See TracBrowser for help on using the repository browser.