source: osm/applications/editors/josm/plugins/sumoconvert/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.6 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>sumoconvert</artifactId>
10
11 <developers>
12 <developer>
13 <name>Ignacio Palermo</name>
14 </developer>
15 <developer>
16 <name>Julio Rivera</name>
17 </developer>
18 </developers>
19 <properties>
20 <plugin.src.dir>src</plugin.src.dir>
21 <plugin.main.version>12643</plugin.main.version>
22 <plugin.author>Ignacio Palermo - Julio Rivera</plugin.author>
23 <plugin.class>org.openstreetmap.josm.plugins.sumoconvert.SumoConvertPlugin</plugin.class>
24 <plugin.description>Allows to edit traffic information and export it to the urban mobility simulator SUMO</plugin.description>
25 <plugin.icon>images/dialogs/logo-sumo.png</plugin.icon>
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-Icon>${plugin.icon}</Plugin-Icon>
36 </manifestEntries>
37 </archive>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42</project>
Note: See TracBrowser for help on using the repository browser.