source: osm/applications/editors/josm/plugins/surveyor/pom.xml@ 36344

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

Set minimum JOSM version to r19044

r19044 was the first Java 11+ only version of JOSM.

File size: 2.2 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>surveyor</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Christof Dallermassl</name>
15 </developer>
16 </developers>
17 <properties>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>19044</plugin.main.version>
20 <plugin.author>Christof Dallermassl</plugin.author>
21 <plugin.class>org.openstreetmap.josm.plugins.surveyor.SurveyorPlugin</plugin.class>
22 <plugin.description>Allow adding markers/nodes on current gps positions.</plugin.description>
23 <plugin.icon>images/surveyormenu.png</plugin.icon>
24 <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Surveyor</plugin.link>
25 <plugin.requires>livegps</plugin.requires>
26 <plugin.stage>60</plugin.stage>
27 </properties>
28 <dependencies>
29 <dependency>
30 <groupId>org.openstreetmap.josm.plugins</groupId>
31 <artifactId>livegps</artifactId>
32 <version>SNAPSHOT</version>
33 <scope>provided</scope>
34 </dependency>
35 </dependencies>
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-jar-plugin</artifactId>
41 <configuration>
42 <archive>
43 <manifestEntries>
44 <Plugin-Link>${plugin.link}</Plugin-Link>
45 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
46 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
47 <Plugin-Requires>${plugin.requires}</Plugin-Requires>
48 </manifestEntries>
49 </archive>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54</project>
Note: See TracBrowser for help on using the repository browser.