<?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="19044"/>
    <property name="livegpsplugin.jar" value="${plugin.dist.dir}/livegps.jar"/>

    <!-- Configure these properties (replace "..." accordingly).
         See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
    -->
    <property name="plugin.author" value="Christof Dallermassl"/>
    <property name="plugin.class" value="org.openstreetmap.josm.plugins.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="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Surveyor"/>
    <property name="plugin.requires" value="livegps"/>
    <property name="plugin.stage" value="60"/>

	<fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
        <include name="livegps.jar"/>
    </fileset>
</project>
