source: osm/applications/editors/josm/plugins/reltoolbox/pom.xml@ 36342

Last change on this file since 36342 was 36325, checked in by taylor.smock, 3 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: 2.0 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>reltoolbox</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Ilya Zverev</name>
15 </developer>
16 </developers>
17 <properties>
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19 <plugin.src.dir>src</plugin.src.dir>
20 <plugin.main.version>18173</plugin.main.version>
21
22 <plugin.author>Ilya Zverev</plugin.author>
23 <plugin.class>relcontext.RelContextPlugin</plugin.class>
24 <plugin.description>Relation and multipolygon creating and editing panel.</plugin.description>
25 <plugin.icon>images/reltoolbox.png</plugin.icon>
26 <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Relation_Toolbox</plugin.link>
27 <plugin.stage>10</plugin.stage>
28 <plugin.canloadatruntime>true</plugin.canloadatruntime>
29 </properties>
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-jar-plugin</artifactId>
35 <configuration>
36 <archive>
37 <manifestEntries>
38 <Plugin-Link>${plugin.link}</Plugin-Link>
39 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
40 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
41 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
42 </manifestEntries>
43 </archive>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>
Note: See TracBrowser for help on using the repository browser.