source: osm/applications/editors/josm/plugins/ColumbusCSV/pom.xml@ 36347

Last change on this file since 36347 was 36325, checked in by taylor.smock, 7 weeks ago

See #23875: Use SNAPSHOT instead of 1.0-SNAPSHOT since that is what our scripts currently publish

This should fix the Jenkins build for plugins.

Note: Maven warns that this may break in the future, in which case we'll have to
change our processes.

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>ColumbusCSV</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Oliver Wieland</name>
15 </developer>
16 </developers>
17 <properties>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>18494</plugin.main.version>
20 <plugin.author>Oliver Wieland</plugin.author>
21 <plugin.class>org.openstreetmap.josm.plugins.columbusCSV.ColumbusCSVPlugin</plugin.class>
22 <plugin.description>Imports proprietary CSV files of the Columbus/Visiontac V-900 GPS logger into a GPX layer.</plugin.description>
23 <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/ColumbusCSV</plugin.link>
24 <plugin.icon>images/colcsvicon.png</plugin.icon>
25 <plugin.stage>60</plugin.stage>
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 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
38 </manifestEntries>
39 </archive>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44</project>
Note: See TracBrowser for help on using the repository browser.