source: osm/applications/editors/josm/plugins/dataimport/pom.xml@ 36319

Last change on this file since 36319 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: 2.6 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>dataimport</artifactId>
10
11 <developers>
12 <developer>
13 <name>Dieter Muecke</name>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>15496</plugin.main.version>
19 <plugin.author>Dieter Muecke</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.dataimport.DataImportPlugin</plugin.class>
21 <plugin.description>Allows to import various file formats into JOSM directly. Currently supported: TangoGPS, Garmin Trainings Center TCX.</plugin.description>
22 <plugin.requires>jaxb</plugin.requires>
23 </properties>
24
25 <dependencies>
26 <dependency>
27 <groupId>org.openstreetmap.josm.plugins</groupId>
28 <artifactId>jaxb</artifactId>
29 <version>1.0-SNAPSHOT</version>
30 <scope>provided</scope>
31 </dependency>
32 </dependencies>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-jar-plugin</artifactId>
39 <configuration>
40 <archive>
41 <manifestEntries>
42 <Plugin-Requires>${plugin.requires}</Plugin-Requires>
43 </manifestEntries>
44 </archive>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.codehaus.mojo</groupId>
49 <artifactId>jaxb2-maven-plugin</artifactId>
50 <executions>
51 <execution>
52 <id>xjc</id>
53 <goals>
54 <goal>xjc</goal>
55 </goals>
56 </execution>
57 </executions>
58 <configuration>
59 <sources>
60 <source>resources/tcx/TrainingCenterDatabasev2.xsd</source>
61 </sources>
62 <packageName>org.openstreetmap.josm.plugins.dataimport.io.tcx</packageName>
63 <encoding>UTF-8</encoding>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68</project>
Note: See TracBrowser for help on using the repository browser.