source: osm/applications/editors/josm/plugins/eventbus/pom.xml@ 36383

Last change on this file since 36383 was 36378, checked in by taylor.smock, 3 weeks ago

Make certain all plugins can be compiled with maven

File size: 1.7 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>eventbus</artifactId>
10
11 <developers>
12 <developer>
13 <id>Don-vip</id>
14 </developer>
15 </developers>
16 <properties>
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>19044</plugin.main.version>
20 <plugin.author>Don-vip</plugin.author>
21 <plugin.class>org.openstreetmap.josm.plugins.eventbus.EventBusPlugin</plugin.class>
22 <plugin.description>Provides an event bus more powerful than the traditional listeners registration</plugin.description>
23 <!--<plugin.icon>...</plugin.icon>-->
24 <!--<plugin.link>...</plugin.link>-->
25 <!--<plugin.early>...</plugin.early>-->
26 <!--<plugin.requires>...</plugin.requires>-->
27 <plugin.stage>1</plugin.stage>
28 </properties>
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-jar-plugin</artifactId>
34 <configuration>
35 <archive>
36 <manifestEntries>
37 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
38 </manifestEntries>
39 </archive>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44</project>
Note: See TracBrowser for help on using the repository browser.