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>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>19044</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>
|
---|