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

    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    <property name="plugin.main.version" value="14153"/>
    <property name="plugin.version" value="2.1"/>

    <!-- Configure these properties (replace "..." accordingly).
         See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
    -->
    <property name="plugin.author" value="Nikos Karagiannakis - Athena RC"/>
    <property name="plugin.class" value="org.openstreetmap.josm.plugins.osmrec.OSMRecPlugin"/>
    <property name="plugin.description" value="Recommends categories/tags on newly created OSM entities by analysing spatial entities into training features and using SVM classification"/>
    <property name="plugin.icon" value="images/dialogs/logo-osmrec.png"/>
    <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/OSMRec"/>
    <property name="plugin.requires" value="log4j;apache-commons;jts;geotools"/>
    
    <!-- ** 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"/>
        <include name="apache-commons.jar"/>
        <include name="jts.jar"/>
        <include name="geotools.jar"/>
    </fileset>
    
</project>
