source: osm/applications/editors/josm/plugins/utilsplugin2/pom.xml@ 36286

Last change on this file since 36286 was 36282, checked in by taylor.smock, 4 months ago

Fix #8269: Add initial maven pom files

This additionally deletes most IDE specific configuration, in favor of Maven
configuration.

What this does not do:

  • Convert from ivy to maven for dependency management. This should happen eventually with maven-resolver-ant-tasks (probably with the next dependency update).
  • Deprecate the current ant scripts.
File size: 2.3 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>1.0-SNAPSHOT</version>
8 </parent>
9 <artifactId>utilsplugin2</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <name>Kalle Lampila</name>
15 </developer>
16 <developer>
17 <id>Upliner</id>
18 </developer>
19 <developer>
20 <id>Zverik</id>
21 </developer>
22 <developer>
23 <id>akks</id>
24 </developer>
25 <developer>
26 <id>joshdoe</id>
27 </developer>
28 </developers>
29 <properties>
30 <plugin.src.dir>src</plugin.src.dir>
31 <plugin.main.version>18495</plugin.main.version>
32 <plugin.author>Kalle Lampila, Upliner, Zverik, akks, joshdoe and others</plugin.author>
33 <plugin.class>org.openstreetmap.josm.plugins.utilsplugin2.UtilsPlugin2</plugin.class>
34 <plugin.description>Several utilities that make your life easier.</plugin.description>
35 <plugin.icon>images/utils.png</plugin.icon>
36 <plugin.link>https://josm.openstreetmap.de/wiki/Help/Plugin/UtilsPlugin2</plugin.link>
37 <plugin.canloadatruntime>true</plugin.canloadatruntime>
38 <plugin.stage>40</plugin.stage>
39 </properties>
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-jar-plugin</artifactId>
45 <configuration>
46 <archive>
47 <manifestEntries>
48 <Plugin-Link>${plugin.link}</Plugin-Link>
49 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
50 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
51 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
52 </manifestEntries>
53 </archive>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58</project>
Note: See TracBrowser for help on using the repository browser.