Last change
on this file since 32399 was 32395, checked in by donvip, 8 years ago |
checkstyle, update to JOSM 10279
|
-
Property svn:mime-type
set to
text/xml
|
File size:
1.4 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="10279"/>
|
---|
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="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Relation_Toolbox"/>
|
---|
13 | <property name="plugin.stage" value="10"/>
|
---|
14 | <property name="plugin.canloadatruntime" value="true"/>
|
---|
15 |
|
---|
16 | <!-- ** include targets that all plugins have in common ** -->
|
---|
17 | <import file="../build-common.xml"/>
|
---|
18 |
|
---|
19 | <target name="runjosm" depends="install">
|
---|
20 | <java jar="${josm}" fork="true">
|
---|
21 | <arg line="e:/test.osm"/>
|
---|
22 | </java>
|
---|
23 | </target>
|
---|
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>
|
---|
31 |
|
---|
32 |
|
---|
33 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.