<?xml version="1.0" encoding="utf-8"?>
<project name="mapdust" default="dist" basedir=".">
    <!-- properties -->
    <property name="commit.message" value="MapDust bug reporter plugin"/>
    <property name="plugin.main.version" value="14153"/>
    <property name="apidoc.dir" value="doc"/>

    <property name="plugin.author" value="skobbler"/>
    <property name="plugin.class" value="org.openstreetmap.josm.plugins.mapdust.MapdustPlugin"/>
    <property name="plugin.description" value="The MapDust Plug-In shows the MapDust bug reports on the map. You can create, close,invalidate, re-open and comment bug reports by using this plugin."/>
    <property name="plugin.icon" value="images/dialogs/mapdust_icon25.png"/>
    <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/MapDust"/>
    <property name="plugin.requires" value="gson"/>

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

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

    <target name="clean">
        <delete dir="${plugin.build.dir}"/>
        <delete dir="${apidoc.dir}"/>
        <delete file="${plugin.jar}"/>
    </target>

    <target name="setup-dist">
        <antcall target="setup-dist-default" />
        <copy todir="${plugin.build.dir}">
            <fileset dir="conf"/>
        </copy>
    </target>

</project>
