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

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

    <property name="plugin.author" value="Nikhil Shirahatti"/>
    <property name="plugin.class" value="org.openstreetmap.josm.plugins.osminspector.OsmInspectorPlugin"/>
    <property name="plugin.description" value="Bring in errors from Osm Inspector and display it on the current JOSM bounding box"/>
    <property name="plugin.icon" value="images/osmInspector.jpg"/>
    <!--<property name="plugin.link" value=""/>-->
    <property name="plugin.requires" value="jts;geotools"/>
    <property name="plugin.minimum.java.version" value="11"/>

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

    <target name="pre-compile" depends="fetch_dependencies">
        <!-- include fetch_dependencies task -->
    </target>

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

</project>
