source: osm/applications/editors/josm/plugins/turnlanes/build.xml@ 36393

Last change on this file since 36393 was 36391, checked in by stoecker, 2 days ago

fix build.xml

  • Property svn:mime-type set to text/xml
File size: 3.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="turnlanes" default="dist" basedir=".">
3
4 <!-- enter the SVN commit message -->
5 <property name="commit.message" value="fix toolbar warnings - toolbar still does not work"/>
6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
7 <property name="plugin.main.version" value="19044"/>
8 <property name="plugin.author" value="Benjamin Schulz"/>
9 <property name="plugin.class" value="org.openstreetmap.josm.plugins.turnlanes.TurnLanesPlugin"/>
10 <property name="plugin.description" value="Provides a straightforward GUI for adding, editing and deleting turn lanes."/>
11 <property name="plugin.icon" value="images/dialogs/turnlanes.pn"/>
12 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/Relations/Proposed/turn_lanes#Plugin"/>
13
14 <!--
15 **********************************************************
16 ** include targets that all plugins have in common
17 **********************************************************
18 -->
19 <import file="../build-common.xml"/>
20
21 <!--
22 **********************************************************
23 ** dist - creates the plugin jar
24 **********************************************************
25 -->
26 <target name="dist" depends="compile,revision">
27 <echo message="creating ${ant.project.name}.jar ... "/>
28 <copy todir="${plugin.build.dir}/resources">
29 <fileset dir="resources"/>
30 </copy>
31 <copy todir="${plugin.build.dir}/images">
32 <fileset dir="images"/>
33 </copy>
34 <copy todir="${plugin.build.dir}/data">
35 <fileset dir="data"/>
36 </copy>
37 <copy todir="${plugin.build.dir}">
38 <fileset dir=".">
39 <include name="README"/>
40 <include name="LICENSE"/>
41 </fileset>
42 </copy>
43 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifestencoding="UTF-8">
44 <!--
45 ************************************************
46 ** configure these properties. Most of them will be copied to the plugins
47 ** manifest file. Property values will also show up in the list available
48 ** plugins: https://josm.openstreetmap.de/wiki/Plugins.
49 **
50 ************************************************
51 -->
52 <manifest>
53 <attribute name="Author" value="Benjamin Schulz"/>
54 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.turnlanes.TurnLanesPlugin"/>
55 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
56 <attribute name="Plugin-Description" value="Provides a straightforward GUI for adding, editing and deleting turn lanes."/>
57 <attribute name="Plugin-Icon" value="images/dialogs/turnlanes.png" />
58 <attribute name="Plugin-Link" value="https://wiki.openstreetmap.org/wiki/Relations/Proposed/turn_lanes#Plugin" />
59 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
60 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
61 </manifest>
62 </jar>
63 </target>
64</project>
Note: See TracBrowser for help on using the repository browser.