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

Last change on this file since 36343 was 36325, checked in by taylor.smock, 6 weeks ago

See #23875: Use SNAPSHOT instead of 1.0-SNAPSHOT since that is what our scripts currently publish

This should fix the Jenkins build for plugins.

Note: Maven warns that this may break in the future, in which case we'll have to
change our processes.

File size: 3.1 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>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>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.apache.maven.plugins</groupId>
49 <artifactId>maven-clean-plugin</artifactId>
50 <configuration>
51 <filesets>
52 <fileset>
53 <!-- Only needed while we keep ant scripts around -->
54 <directory>src/org/openstreetmap/josm/plugins/dataimport/io/tcx</directory>
55 </fileset>
56 </filesets>
57 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>jaxb2-maven-plugin</artifactId>
62 <executions>
63 <execution>
64 <id>xjc</id>
65 <goals>
66 <goal>xjc</goal>
67 </goals>
68 </execution>
69 </executions>
70 <configuration>
71 <sources>
72 <source>resources/tcx/TrainingCenterDatabasev2.xsd</source>
73 </sources>
74 <packageName>org.openstreetmap.josm.plugins.dataimport.io.tcx</packageName>
75 <encoding>UTF-8</encoding>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80</project>
Note: See TracBrowser for help on using the repository browser.