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

Last change on this file since 36325 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.1 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>jna</artifactId>
10
11 <developers>
12 <developer>
13 <id>Don-vip</id>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>19044</plugin.main.version>
19 <plugin.author>Don-vip</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.jna.JNAPlugin</plugin.class>
21 <plugin.description>Provides Java Native Access (JNA) library. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
22 <plugin.icon>images/jnalogo.jpg</plugin.icon>
23 <plugin.stage>10</plugin.stage>
24 <jna.version>5.14.0</jna.version>
25 </properties>
26 <dependencies>
27 <dependency>
28 <groupId>net.java.dev.jna</groupId>
29 <artifactId>jna</artifactId>
30 <version>${jna.version}</version>
31 </dependency>
32 <dependency>
33 <groupId>net.java.dev.jna</groupId>
34 <artifactId>jna-platform</artifactId>
35 <version>${jna.version}</version>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-jar-plugin</artifactId>
43 <configuration>
44 <archive>
45 <manifestEntries>
46 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
47 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
48 </manifestEntries>
49 </archive>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54</project>
Note: See TracBrowser for help on using the repository browser.