source: osm/applications/editors/josm/plugins/junctionchecking/build.xml@ 32286

Last change on this file since 32286 was 31926, checked in by stoecker, 9 years ago

use more https links

  • Property svn:mime-type set to text/xml
File size: 1.4 KB
RevLine 
[26174]1<?xml version="1.0" encoding="utf-8"?>
[25501]2<project name="junctionchecking" default="dist" basedir=".">
[26174]3 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
[29596]4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
[30664]5 <property name="plugin.main.version" value="7575"/>
[29596]6
7 <!-- Configure these properties (replace "..." accordingly).
[31926]8 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
[25501]9 -->
[29596]10 <property name="plugin.author" value="Jörg Possin"/>
11 <property name="plugin.class" value="org.openstreetmap.josm.plugins.JunctionChecker.JunctionCheckerPlugin"/>
12 <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"/>
13 <property name="plugin.icon" value="images/dialogs/junctionchecker.png"/>
[31923]14 <property name="plugin.link" value="https://wiki.openstreetmap.org/index.php/JOSM/Plugins/JunctionChecking"/>
[29596]15
16 <!-- ** include targets that all plugins have in common ** -->
17 <import file="../build-common.xml"/>
18
19 <target name="additional-manifest">
20 <manifest file="MANIFEST" mode="update">
21 <attribute name="Main-Class" value="org.openstreetmap.josm.plugins.JunctionChecker.commandlineinterface.CLI"/>
22 </manifest>
[26174]23 </target>
[25501]24</project>
Note: See TracBrowser for help on using the repository browser.