[26174] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
[16176] | 2 | <project name="dataimport" default="dist" basedir=".">
|
---|
[32306] | 3 |
|
---|
[26174] | 4 | <!-- enter the SVN commit message -->
|
---|
| 5 | <property name="commit.message" value="Changed constructor signature, updated build.xml"/>
|
---|
| 6 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
[32680] | 7 | <property name="plugin.main.version" value="10580"/>
|
---|
[32306] | 8 |
|
---|
| 9 | <!-- Configure these properties (replace "..." accordingly).
|
---|
| 10 | See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
|
---|
[16176] | 11 | -->
|
---|
[32306] | 12 | <property name="plugin.author" value="Dieter Muecke"/>
|
---|
| 13 | <property name="plugin.class" value="org.openstreetmap.josm.plugins.dataimport.DataImportPlugin"/>
|
---|
| 14 | <property name="plugin.description" value="Allows to import various file formats into JOSM directly. Currently supported: TangoGPS, Garmin Trainings Center TCX."/>
|
---|
| 15 | <!--<property name="plugin.icon" value="..."/>-->
|
---|
| 16 | <!--<property name="plugin.link" value="..."/>-->
|
---|
| 17 | <!--<property name="plugin.early" value="..."/>-->
|
---|
| 18 | <!--<property name="plugin.requires" value="..."/>-->
|
---|
| 19 | <!--<property name="plugin.stage" value="..."/>-->
|
---|
[19430] | 20 |
|
---|
[32306] | 21 | <!-- ** include targets that all plugins have in common ** -->
|
---|
| 22 | <import file="../build-common.xml"/>
|
---|
[32322] | 23 |
|
---|
[32900] | 24 | <target name="pre-compile" depends="-jaxb_before9, -jaxb_after9" unless="jaxb.notRequired">
|
---|
[32322] | 25 | <exec executable="${xjc}" failonerror="true">
|
---|
| 26 | <arg value="-d"/>
|
---|
| 27 | <arg value="src"/>
|
---|
| 28 | <arg value="-p"/>
|
---|
| 29 | <arg value="org.openstreetmap.josm.plugins.dataimport.io.tcx"/>
|
---|
| 30 | <arg value="-encoding"/>
|
---|
| 31 | <arg value="UTF-8"/>
|
---|
| 32 | <arg value="resources/tcx/TrainingCenterDatabasev2.xsd"/>
|
---|
| 33 | </exec>
|
---|
| 34 | </target>
|
---|
| 35 |
|
---|
[16176] | 36 | </project>
|
---|