source: osm/applications/editors/josm/plugins/surveyor/build.xml@ 31578

Last change on this file since 31578 was 30440, checked in by donvip, 10 years ago

[josm_surveyor] update to JOSM 7100

  • Property svn:mime-type set to text/xml
File size: 1.8 KB
Line 
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="7100"/>
10 <property name="livegpsplugin.jar" value="${plugin.dist.dir}/livegps.jar"/>
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
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>
Note: See TracBrowser for help on using the repository browser.