<?xml version="1.0" encoding="utf-8"?>
<project name="reltoolbox" default="dist" basedir=".">
    <!-- enter the SVN commit message -->
    <property name="commit.message" value="RelToolbox: make natural sort for relation and find relation lists"/>
    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    <property name="plugin.main.version" value="19044"/>

    <property name="plugin.author" value="Ilya Zverev"/>
    <property name="plugin.class" value="relcontext.RelContextPlugin"/>
    <property name="plugin.description" value="Relation and multipolygon creating and editing panel."/>
    <property name="plugin.icon" value="images/reltoolbox.png"/>
    <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Relation_Toolbox"/>
    <property name="plugin.stage" value="10"/>
	<property name="plugin.canloadatruntime" value="true"/>

    <!-- ** include targets that all plugins have in common ** -->
    <import file="../build-common.xml"/>

    <target name="runjosm" depends="install">
        <java jar="${josm}" fork="true">
            <arg line="e:/test.osm"/>
        </java>
    </target>

    <target name="setup-dist">
        <antcall target="setup-dist-default" />
        <copy todir="${plugin.build.dir}">
            <fileset dir="src" includes="**/*.txt"/>
        </copy>
    </target>
</project>
