Last change
on this file since 36342 was 35829, checked in by Don-vip, 3 years ago |
update to JOSM 18173
|
-
Property svn:mime-type
set to
text/xml
|
File size:
1.4 KB
|
Rev | Line | |
---|
[26174] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
| 2 | <project name="reltoolbox" default="dist" basedir=".">
|
---|
| 3 | <!-- enter the SVN commit message -->
|
---|
[28857] | 4 | <property name="commit.message" value="RelToolbox: make natural sort for relation and find relation lists"/>
|
---|
[26174] | 5 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
[35829] | 6 | <property name="plugin.main.version" value="18173"/>
|
---|
[29044] | 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"/>
|
---|
[31923] | 12 | <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Relation_Toolbox"/>
|
---|
[29044] | 13 | <property name="plugin.stage" value="10"/>
|
---|
[31056] | 14 | <property name="plugin.canloadatruntime" value="true"/>
|
---|
[29044] | 15 |
|
---|
| 16 | <!-- ** include targets that all plugins have in common ** -->
|
---|
| 17 | <import file="../build-common.xml"/>
|
---|
| 18 |
|
---|
[29164] | 19 | <target name="runjosm" depends="install">
|
---|
[27927] | 20 | <java jar="${josm}" fork="true">
|
---|
| 21 | <arg line="e:/test.osm"/>
|
---|
| 22 | </java>
|
---|
| 23 | </target>
|
---|
[29164] | 24 |
|
---|
| 25 | <target name="setup-dist">
|
---|
| 26 | <antcall target="setup-dist-default" />
|
---|
| 27 | <copy todir="${plugin.build.dir}">
|
---|
| 28 | <fileset dir="src" includes="**/*.txt"/>
|
---|
| 29 | </copy>
|
---|
| 30 | </target>
|
---|
[26174] | 31 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.