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

Last change on this file since 36349 was 36349, checked in by taylor.smock, 6 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.8 KB
RevLine 
[36282]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>
[36325]7 <version>SNAPSHOT</version>
[36282]8 </parent>
9 <artifactId>DirectUpload</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Subhodip Biswas</name>
15 </developer>
16 </developers>
17 <properties>
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19 <plugin.src.dir>src</plugin.src.dir>
[36349]20 <plugin.main.version>19044</plugin.main.version>
[36282]21 <plugin.author>Subhodip Biswas</plugin.author>
22 <plugin.class>org.openstreetmap.josm.plugins.DirectUpload.UploadDataGuiPlugin</plugin.class>
23 <plugin.description>This plugin directly upload GPS Traces from current active layer in JOSM to openstreetmap.org.</plugin.description>
24 <plugin.icon>images/UploadAction.svg</plugin.icon>
25 <plugin.link>https://wiki.openstreetmap.org/index.php/User:Subhodip/GSoC_Doc#DirectUpload_Plugin_in_JOSM_:</plugin.link>
26 </properties>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-jar-plugin</artifactId>
32 <configuration>
33 <archive>
34 <manifestEntries>
35 <Plugin-Link>${plugin.link}</Plugin-Link>
36 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
37 </manifestEntries>
38 </archive>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43</project>
Note: See TracBrowser for help on using the repository browser.