source: osm/applications/editors/josm/plugins/tracer/pom.xml@ 36325

Last change on this file since 36325 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: 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>tracer</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Jan Bilak</name>
15 </developer>
16 <developer>
17 <name>Petr Dlouhý</name>
18 </developer>
19 </developers>
20 <properties>
21 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22 <plugin.src.dir>src</plugin.src.dir>
23 <plugin.main.version>18464</plugin.main.version>
24 <plugin.canloadatruntime>true</plugin.canloadatruntime>
25
26 <plugin.author>Jan Bilak, Petr Dlouhý</plugin.author>
27 <plugin.class>org.openstreetmap.josm.plugins.tracer.TracerPlugin</plugin.class>
28 <plugin.description>Traces buildings from Czech cadastral map. Needs TracerServer (.NET or Mono) to be running.</plugin.description>
29 <plugin.icon>images/mapmode/tracer-sml.png</plugin.icon>
30 <plugin.link>https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Tracer</plugin.link>
31 </properties>
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-jar-plugin</artifactId>
37 <configuration>
38 <archive>
39 <manifestEntries>
40 <Plugin-Link>${plugin.link}</Plugin-Link>
41 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
42 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
43 </manifestEntries>
44 </archive>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49</project>
Note: See TracBrowser for help on using the repository browser.