source: osm/applications/editors/josm/plugins/reverter/pom.xml@ 36360

Last change on this file since 36360 was 36325, checked in by taylor.smock, 4 months 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.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>reverter</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <id>Upliner</id>
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>Upliner</plugin.author>
21 <plugin.class>reverter.ReverterPlugin</plugin.class>
22 <plugin.description>Plugin for reverting changesets</plugin.description>
23 <plugin.icon>images/revert-changeset.svg</plugin.icon>
24 <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Reverter</plugin.link>
25 <plugin.canloadatruntime>true</plugin.canloadatruntime>
26 <plugin.stage>5</plugin.stage>
27 </properties>
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-jar-plugin</artifactId>
33 <configuration>
34 <archive>
35 <manifestEntries>
36 <Plugin-Link>${plugin.link}</Plugin-Link>
37 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
38 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
39 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
40 </manifestEntries>
41 </archive>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46</project>
Note: See TracBrowser for help on using the repository browser.