source: osm/applications/editors/josm/plugins/reltoolbox/build.xml@ 29044

Last change on this file since 29044 was 29044, checked in by donvip, 12 years ago

[josm_reltoolbox] simplify build.xml + bump JOSM main version as this plugin needs to be recompiled

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="reltoolbox" default="dist" basedir=".">
3 <!-- enter the SVN commit message -->
4 <property name="commit.message" value="RelToolbox: make natural sort for relation and find relation lists"/>
5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
6 <property name="plugin.main.version" value="5613"/>
7
8 <property name="plugin.author" value="Ilya Zverev"/>
9 <property name="plugin.class" value="relcontext.RelContextPlugin"/>
10 <property name="plugin.description" value="Relation and multipolygon creating and editing panel."/>
11 <property name="plugin.icon" value="images/reltoolbox.png"/>
12 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Relation_Toolbox"/>
13 <property name="plugin.stage" value="10"/>
14
15 <!-- ** include targets that all plugins have in common ** -->
16 <import file="../build-common.xml"/>
17
18 <target name="runjosm" depends="install">
19 <java jar="${josm}" fork="true">
20 <arg line="e:/test.osm"/>
21 </java>
22 </target>
23
24</project>
Note: See TracBrowser for help on using the repository browser.