-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
18 lines (15 loc) · 878 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<project name="fastdriveway" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="Fix icon path"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="10580"/>
<property name="plugin.version" value="v1.0.1"/>
<property name="plugin.author" value="NieWnen"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.fastdriveway.FastDrivewayPlugin"/>
<property name="plugin.description" value="Faster driveway mapping."/>
<property name="plugin.icon" value="images/fastdriveway.png"/>
<property name="plugin.canloadatruntime" value="true"/>
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>