[26174] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
[2936] | 2 | <project name="surveyor" default="dist" basedir=".">
|
---|
[29841] | 3 | <!-- ** include targets that all plugins have in common ** -->
|
---|
| 4 | <import file="../build-common.xml"/>
|
---|
| 5 |
|
---|
[26174] | 6 | <!-- enter the SVN commit message -->
|
---|
| 7 | <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
|
---|
| 8 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
[30440] | 9 | <property name="plugin.main.version" value="7100"/>
|
---|
[26174] | 10 | <property name="livegpsplugin.jar" value="${plugin.dist.dir}/livegps.jar"/>
|
---|
[29841] | 11 |
|
---|
| 12 | <!-- Configure these properties (replace "..." accordingly).
|
---|
| 13 | See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
|
---|
| 14 | -->
|
---|
| 15 | <property name="plugin.author" value="Christof Dallermassl"/>
|
---|
| 16 | <property name="plugin.class" value="at.dallermassl.josm.plugin.surveyor.SurveyorPlugin"/>
|
---|
| 17 | <property name="plugin.description" value="Allow adding markers/nodes on current gps positions."/>
|
---|
| 18 | <property name="plugin.icon" value="images/surveyormenu.png"/>
|
---|
| 19 | <property name="plugin.link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/>
|
---|
| 20 | <property name="plugin.requires" value="livegps"/>
|
---|
| 21 | <property name="plugin.stage" value="60"/>
|
---|
| 22 |
|
---|
[26174] | 23 | <target name="compile" depends="init">
|
---|
[29841] | 24 | <echo message="compiling sources for ${plugin.jar} ..."/>
|
---|
| 25 | <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false" encoding="UTF-8">
|
---|
[26174] | 26 | <compilerarg value="-Xlint:deprecation"/>
|
---|
| 27 | <compilerarg value="-Xlint:unchecked"/>
|
---|
| 28 | <classpath>
|
---|
| 29 | <pathelement location="${josm}"/>
|
---|
| 30 | <pathelement location="${livegpsplugin.jar}"/>
|
---|
| 31 | </classpath>
|
---|
| 32 | </javac>
|
---|
| 33 | </target>
|
---|
[2936] | 34 | </project>
|
---|