forked from kolesar-andras/josm-plugin-improve-way
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
21 lines (18 loc) · 1.23 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<project name="ImproveWay" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="ImproveWay: recompile for compatibility with JOSM r17896"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="18464"/>
<!-- Configure these properties (replace "..." accordingly).
See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<property name="plugin.author" value="Kolesár András <kolesar@openstreetmap.hu>"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.improveway.ImproveWayPlugin"/>
<property name="plugin.description" value="Extends ImproveWayAccuracy mode with helpers to place nodes at accurate distances and angles."/>
<property name="plugin.icon" value="images/mapmode/improveway.png"/>
<property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/ImproveWay"/>
<property name="plugin.canloadatruntime" value="true"/>
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>