1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <project name="surveyor" default="dist" basedir=".">
|
---|
3 | <!-- ** include targets that all plugins have in common ** -->
|
---|
4 | <import file="../build-common.xml"/>
|
---|
5 |
|
---|
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 -->
|
---|
9 | <property name="plugin.main.version" value="10580"/>
|
---|
10 | <property name="livegpsplugin.jar" value="${plugin.dist.dir}/livegps.jar"/>
|
---|
11 |
|
---|
12 | <!-- Configure these properties (replace "..." accordingly).
|
---|
13 | See https://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="https://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/>
|
---|
20 | <property name="plugin.requires" value="livegps"/>
|
---|
21 | <property name="plugin.stage" value="60"/>
|
---|
22 |
|
---|
23 | <target name="compile" depends="init">
|
---|
24 | <echo message="compiling sources for ${plugin.jar} ..."/>
|
---|
25 | <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false" encoding="UTF-8">
|
---|
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>
|
---|
34 | </project>
|
---|