source: osm/applications/editors/josm/plugins/roadsigns/build.xml@ 33729

Last change on this file since 33729 was 33579, checked in by donvip, 7 years ago

update to JOSM 12678

  • Property svn:mime-type set to text/xml
File size: 2.8 KB
RevLine 
[26174]1<?xml version="1.0" encoding="utf-8"?>
[21967]2<project name="RoadSigns" default="dist" basedir=".">
[26174]3 <!-- enter the SVN commit message -->
[30940]4 <property name="commit.message" value=""/>
[26174]5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
[33579]6 <property name="plugin.main.version" value="12678"/>
[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>
[31768]34 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifestencoding="UTF-8">
[26174]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
[31926]39 ** plugins: https://josm.openstreetmap.de/wiki/Plugins.
[26174]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}"/>
[30940]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: Belgium, Germany, Poland, Slovakia, Spain."/>
[26174]48 <attribute name="Plugin-Icon" value="images/pref/roadsigns.png"/>
[31923]49 <attribute name="Plugin-Link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/RoadSigns"/>
[26174]50 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
51 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
[30962]52 <attribute name="Plugin-Canloadatruntime" value="true"/>
[26174]53 </manifest>
54 </jar>
55 </target>
[21967]56</project>
Note: See TracBrowser for help on using the repository browser.