[26174] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
[21967] | 2 | <project name="RoadSigns" default="dist" basedir=".">
|
---|
[26174] | 3 | <!-- enter the SVN commit message -->
|
---|
[26401] | 4 | <property name="commit.message" value="preset maintenance (Fahrradstraße)"/>
|
---|
[26174] | 5 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
[29854] | 6 | <property name="plugin.main.version" value="6162"/>
|
---|
[26341] | 7 |
|
---|
[26174] | 8 | <!--
|
---|
[21967] | 9 | **********************************************************
|
---|
[26341] | 10 | ** include targets that all plugins have in common
|
---|
[21967] | 11 | **********************************************************
|
---|
| 12 | -->
|
---|
[26341] | 13 | <import file="../build-common.xml"/>
|
---|
| 14 |
|
---|
[26174] | 15 | <!--
|
---|
[21967] | 16 | **********************************************************
|
---|
| 17 | ** dist - creates the plugin jar
|
---|
| 18 | **********************************************************
|
---|
| 19 | -->
|
---|
[26174] | 20 | <target name="dist" depends="compile,revision">
|
---|
| 21 | <echo message="creating ${ant.project.name}.jar ... "/>
|
---|
| 22 | <copy todir="${plugin.build.dir}/images">
|
---|
| 23 | <fileset dir="images"/>
|
---|
| 24 | </copy>
|
---|
| 25 | <copy todir="${plugin.build.dir}/data">
|
---|
| 26 | <fileset dir="data"/>
|
---|
| 27 | </copy>
|
---|
| 28 | <copy todir="${plugin.build.dir}">
|
---|
| 29 | <fileset dir=".">
|
---|
| 30 | <include name="README"/>
|
---|
| 31 | <include name="LICENSE"/>
|
---|
| 32 | </fileset>
|
---|
| 33 | </copy>
|
---|
| 34 | <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
|
---|
| 35 | <!--
|
---|
| 36 | ************************************************
|
---|
| 37 | ** configure these properties. Most of them will be copied to the plugins
|
---|
| 38 | ** manifest file. Property values will also show up in the list available
|
---|
| 39 | ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
|
---|
| 40 | **
|
---|
| 41 | ************************************************
|
---|
| 42 | -->
|
---|
| 43 | <manifest>
|
---|
[26341] | 44 | <attribute name="Author" value="Paul Hartmann"/>
|
---|
[26174] | 45 | <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.roadsigns.RoadSignsPlugin"/>
|
---|
| 46 | <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
|
---|
| 47 | <attribute name="Plugin-Description" value="Plugin for tagging of objects based on a selection of road signs. The dialog can be opened by clicking a small icon in the upper right corner of the properties window. Available country presets: Germany."/>
|
---|
| 48 | <attribute name="Plugin-Icon" value="images/pref/roadsigns.png"/>
|
---|
| 49 | <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/RoadSigns"/>
|
---|
| 50 | <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
|
---|
| 51 | <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
|
---|
| 52 | </manifest>
|
---|
| 53 | </jar>
|
---|
| 54 | </target>
|
---|
[21967] | 55 | </project>
|
---|