<?xml version="1.0" encoding="utf-8"?>
<project name="junctionchecking" default="dist" basedir=".">
    <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    <property name="plugin.main.version" value="19044"/>
    
    <!-- Configure these properties (replace "..." accordingly).
         See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
    -->
    <property name="plugin.author" value="Jörg Possin"/>
    <property name="plugin.class" value="org.openstreetmap.josm.plugins.JunctionChecker.JunctionCheckerPlugin"/>
    <property name="plugin.description" value="creates a channel digraph and checks a subset of channels if it is a junction or searches in a subset of channels for junctions"/>
    <property name="plugin.icon" value="images/dialogs/junctionchecker.png"/>
    <property name="plugin.link" value="https://wiki.openstreetmap.org/index.php/JOSM/Plugins/JunctionChecking"/>

    <!-- ** include targets that all plugins have in common ** -->
    <import file="../build-common.xml"/>
    
    <target name="additional-manifest">
        <manifest file="MANIFEST" mode="update">
            <attribute name="Main-Class" value="org.openstreetmap.josm.plugins.JunctionChecker.commandlineinterface.CLI"/>
        </manifest>
    </target>
</project>
