<?xml version="1.0" encoding="utf-8"?>
<project name="surveyor" default="dist" basedir=".">
    <!-- ** include targets that all plugins have in common ** -->
    <import file="../build-common.xml"/>
	
    <!-- enter the SVN commit message -->
    <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    <property name="plugin.main.version" value="7100"/>
    <property name="livegpsplugin.jar" value="${plugin.dist.dir}/livegps.jar"/>

    <!-- Configure these properties (replace "..." accordingly).
         See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
    -->
    <property name="plugin.author" value="Christof Dallermassl"/>
    <property name="plugin.class" value="at.dallermassl.josm.plugin.surveyor.SurveyorPlugin"/>
    <property name="plugin.description" value="Allow adding markers/nodes on current gps positions."/>
    <property name="plugin.icon" value="images/surveyormenu.png"/>
    <property name="plugin.link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/>
    <property name="plugin.requires" value="livegps"/>
    <property name="plugin.stage" value="60"/>
	
    <target name="compile" depends="init">
        <echo message="compiling sources for ${plugin.jar} ..."/>
        <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false" encoding="UTF-8">
            <compilerarg value="-Xlint:deprecation"/>
            <compilerarg value="-Xlint:unchecked"/>
            <classpath>
                <pathelement location="${josm}"/>
                <pathelement location="${livegpsplugin.jar}"/>
            </classpath>
        </javac>
    </target>
</project>
