source: osm/applications/editors/josm/plugins/trustosm/pom.xml@ 36343

Last change on this file since 36343 was 36325, checked in by taylor.smock, 5 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.2 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>trustosm</artifactId>
10
11 <developers>
12 <developer>
13 <name>Christoph Wagner</name>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>18494</plugin.main.version>
19 <plugin.author>Christoph Wagner</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.trustosm.TrustOSMplugin</plugin.class>
21 <plugin.description>Plugin to digital sign OSM-Data</plugin.description>
22 <plugin.icon>images/trustosm.png</plugin.icon>
23 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
25 </properties>
26 <dependencies>
27 <dependency>
28 <groupId>org.bouncycastle</groupId>
29 <artifactId>bcpg-jdk15on</artifactId>
30 <version>1.51</version>
31 </dependency>
32 <dependency>
33 <groupId>com.toedter</groupId>
34 <artifactId>jcalendar</artifactId>
35 <version>1.4</version>
36 </dependency>
37 <dependency>
38 <groupId>org.swinglabs.swingx</groupId>
39 <artifactId>swingx-core</artifactId>
40 <version>1.6.5-1</version>
41 </dependency>
42 </dependencies>
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-jar-plugin</artifactId>
48 <configuration>
49 <archive>
50 <manifestEntries>
51 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
52 </manifestEntries>
53 </archive>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58</project>
Note: See TracBrowser for help on using the repository browser.