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

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

Dependency updates

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

File size: 1.9 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>globalsat</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Raphael Mack</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>Raphael Mack</plugin.author>
21 <plugin.class>org.openstreetmap.josm.plugins.globalsat.GlobalsatPlugin</plugin.class>
22 <plugin.description>Download GPS points from Globalsat dg100 data logger directly in JOSM.</plugin.description>
23 <plugin.icon>images/globalsatImport.png</plugin.icon>
24 <plugin.link>https://www.raphael-mack.de/josm-globalsat-gpx-import-plugin/</plugin.link>
25 </properties>
26 <dependencies>
27 <dependency>
28 <groupId>org.rxtx</groupId>
29 <artifactId>rxtx</artifactId>
30 <version>2.1.7</version>
31 </dependency>
32 </dependencies>
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-jar-plugin</artifactId>
38 <configuration>
39 <archive>
40 <manifestEntries>
41 <Plugin-Link>${project.url}</Plugin-Link>
42 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
43 </manifestEntries>
44 </archive>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49</project>
Note: See TracBrowser for help on using the repository browser.