<?xml version="1.0" encoding="utf-8"?>
<project name="routing" default="dist" basedir=".">

    <!-- enter the SVN commit message -->
    <property name="commit.message" value="added one-way support in roundabouts"/>
    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    <property name="plugin.main.version" value="19044"/>

    <property name="plugin.author" value="Jose Vidal &lt;vidalfree@gmail.com&gt;, Juangui Jordán &lt;juangui@gmail.com&gt;, Hassan S &lt;hassan.sabirin@gmail.com&gt;"/>
    <property name="plugin.class" value="com.innovant.josm.plugin.routing.RoutingPlugin"/>
    <property name="plugin.description" value="Provides routing capabilities."/>
    <property name="plugin.icon" value="images/preferences/routing.png"/>
    <property name="plugin.link" value="https://wiki.openstreetmap.org/index.php/JOSM/Plugins/Routing"/>

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

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

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