-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.xml
16 lines (16 loc) · 930 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<project name="turnlanes-tagging" default="dist" basedir=".">
<property name="commit.message" value="Turn Lanes Tagging"/>
<property name="plugin.main.version" value="19044"/>
<property name="plugin.author" value="Rub21"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.turnlanestagging.TurnLanesTaggingPlugin"/>
<property name="plugin.description" value="Editor to add turn lanes tags in highways"/>
<property name="plugin.link" value="https://github.com/JOSM/turnlanes-tagging"/>
<property name="plugin.icon" value="images/turnlanes-tagging.png"/>
<property name="plugin.requires" value="tageditor"/>
<property name="plugin.canloadatruntime" value="true"/>
<import file="../build-common.xml"/>
<fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
<include name="tageditor.jar"/>
</fileset>
</project>