forked from open-indoor/openindoor-josm-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
19 lines (14 loc) · 878 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<project name="indoorequal" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="Commit message"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="18303"/>
<property name="plugin.canloadatruntime" value="true"/>
<property name="plugin.author" value="indoor="/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.indoorequal.IndoorEqualPlugin"/>
<property name="plugin.description" value="Allows to preview your indoor edit into indoor="/>
<property name="plugin.icon" value="images/indoorequal.svg"/>
<property name="plugin.link" value="https://github.com/indoorequal/indoorequal-josm-plugin"/>
<import file="../build-common.xml"/>
</project>