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

Last change on this file since 36313 was 36282, checked in by taylor.smock, 7 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: 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>1.0-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 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>16563</plugin.main.version>
19 <plugin.author>Don-vip</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.eventbus.EventBusPlugin</plugin.class>
21 <plugin.description>Provides an event bus more powerful than the traditional listeners registration</plugin.description>
22 <!--<plugin.icon>...</plugin.icon>-->
23 <!--<plugin.link>...</plugin.link>-->
24 <!--<plugin.early>...</plugin.early>-->
25 <!--<plugin.requires>...</plugin.requires>-->
26 <plugin.stage>1</plugin.stage>
27 </properties>
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-jar-plugin</artifactId>
33 <configuration>
34 <archive>
35 <manifestEntries>
36 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
37 </manifestEntries>
38 </archive>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43</project>
Note: See TracBrowser for help on using the repository browser.