forked from BjornRasmussen/Lanes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
28 lines (24 loc) · 958 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<!--
** This is a template build file for a JOSM plugin.
**
** Maintaining versions
** ====================
** See README.template
**
** Usage
** =====
** Call "ant help" to get possible build targets.
**
-->
<project name="Lanes" default="dist" basedir=".">
<property name="commit.message" value="Commit message"/>
<property name="plugin.main.version" value="15000"/>
<property name="plugin.version" value="v1.5"/>
<property name="plugin.author" value="Leif Rasmussen"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.lanes.LanesPlugin"/>
<property name="plugin.description" value="A simple on-map lane editor for :lanes tagging and connectivity relations."/>
<property name="plugin.icon" value="images/laneconnectivity.png"/>
<property name="plugin.link" value="https://github.com/BjornRasmussen/Lanes"/>
<import file="../build-common.xml"/>
</project>