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

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

Dependency updates

Most plugins have been moved to require a minimum version of r19044 (mostly for
Java 11+ build reasons).

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.20.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.