forked from maripo/JOSM_easypresets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
executable file
·38 lines (33 loc) · 1.43 KB
/
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
29
30
31
32
33
34
35
36
37
38
<?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="easypresets" 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="17084"/>
<property name="plugin.version" value="2.0"/>
<!-- Configure these properties (replace "..." accordingly).
See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<property name="plugin.author" value="Maripo GODA"/>
<property name="plugin.class" value="org.maripo.josm.easypresets.EasyPresetsPlugin"/>
<property name="plugin.description" value="EasyPresets plugin helps you create and use custom presets"/>
<property name="plugin.icon" value="images/easypresets.png"/>
<property name="plugin.link" value="https://github.com/maripo/JOSM_easypresets"/>
<!--<property name="plugin.early" value="true"/>-->
<!--<property name="plugin.requires" value="..."/>-->
<!--<property name="plugin.stage" value="..."/>-->
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>