source: osm/applications/editors/josm/plugins/ElevationProfile/build.xml@ 23766

Last change on this file since 23766 was 23766, checked in by oliverw, 14 years ago

Updated build.xml (description)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Author Id Date Revision
  • Property svn:mime-type set to text/xml
File size: 6.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3** This is a template build file for a JOSM plugin.
4**
5** Maintaining versions
6** ====================
7** see README.template
8**
9** Usage
10** =====
11** To build it run
12**
13** > ant dist
14**
15** To install the generated plugin locally (in you default plugin directory) run
16**
17** > ant install
18**
19** The generated plugin jar is not automatically available in JOSMs plugin configuration
20** dialog. You have to check it in first.
21**
22-->
23<project name="ElevationProfile" default="dist" basedir=".">
24 <!--
25 ************************************************
26 ** should not be necessary to change the following properties
27 -->
28 <property name="josm_unstable" location="../../core/dist/josm-custom.jar"/>
29 <property name="josm" location="lib/josm-tested.jar"/>
30 <property name="plugin.build.dir" value="build"/>
31 <property name="plugin.src.dir" value="src"/>
32 <!-- this is the directory where the plugin jar is copied to -->
33 <property name="ant.build.javac.target" value="1.5"/>
34 <property name="plugin.dist.dir" value="../../dist"/>
35 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
36 <property name="plugin.src.zip" value="${plugin.dist.dir}/${ant.project.name}-src.zip"/>
37
38 <!--
39 **********************************************************
40 ** init - initializes the build
41 **********************************************************
42 -->
43 <target name="init">
44 <mkdir dir="${plugin.build.dir}"/>
45 </target>
46
47 <!--
48 **********************************************************
49 ** compile - complies the source tree
50 **********************************************************
51 -->
52 <target name="compile" depends="init">
53 <echo message="compiling sources for ${plugin.jar} ... "/>
54 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
55 <compilerarg value="-Xlint:deprecation"/>
56 <compilerarg value="-Xlint:unchecked"/>
57 </javac>
58 </target>
59
60 <!--
61 **********************************************************
62 ** dist - creates the plugin jar
63 **********************************************************
64 -->
65 <target name="dist" depends="compile,revision">
66 <condition property="josm.dist.dir" value="../../dist" else="dist">
67 <and>
68 <os family="windows"/>
69 </and>
70 </condition>
71 <mkdir dir="${plugin.dist.dir}"/>
72 <echo message="creating ${plugin.jar} ... "/>
73 <!--
74 <copy todir="${plugin.build.dir}/resources">
75 <fileset dir="resources"/>
76 </copy>
77 -->
78 <copy todir="${plugin.build.dir}/images">
79 <fileset dir="images"/>
80 </copy>
81 <copy todir="${plugin.build.dir}">
82 <fileset dir=".">
83 <include name="README" />
84 <include name="LICENSE" />
85 </fileset>
86 </copy>
87 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
88 <!--
89 ************************************************
90 ** configure these properties. Most of them will be copied to the plugins
91 ** manifest file. Property values will also show up in the list available
92 ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
93 **
94 ************************************************
95 -->
96 <manifest>
97 <attribute name="Author" value="Oliver Wieland"/>
98 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.elevation.ElevationProfilePlugin"/>
99 <attribute name="Plugin-Date" value="23.10.10"/>
100 <attribute name="Plugin-Description" value="Shows the elevation profile and some statistical data of a GPS track in JOSM."/>
101 <attribute name="de_Plugin-Description" value="Zeigt das Höhenprofil und statistische Werte eines Tracks in JOSM."/>
102 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/ElevationProfile"/>
103 <attribute name="Plugin-Mainversion" value="3529"/>
104 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
105 <attribute name="Plugin-Icon" value="images/elevation.png"/>
106 </manifest>
107 </jar>
108 <!-- Zip source files -->
109 <zip destfile="${plugin.src.zip}">
110 <fileset dir="." includes="**/*.java"/>
111 <fileset dir="." includes="build.xml,README,LICENSE"/>
112 </zip>
113 </target>
114
115 <!--
116 **********************************************************
117 ** revision - extracts the current revision number for the
118 ** file build.number and stores it in the XML property
119 ** version.*
120 **********************************************************
121 -->
122 <target name="revision">
123 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
124 <env key="LANG" value="C"/>
125 <arg value="info"/>
126 <arg value="--xml"/>
127 <arg value="build.xml"/>
128 </exec>
129 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
130 <echo message="Revision: ${version.entry.commit.revision}"/>
131 <delete file="REVISION"/>
132 </target>
133
134 <!--
135 **********************************************************
136 ** clean - clean up the build environment
137 **********************************************************
138 -->
139 <target name="clean">
140 <delete dir="${plugin.build.dir}"/>
141 <delete file="${plugin.jar}"/>
142 </target>
143
144 <!--
145 **********************************************************
146 ** install - install the plugin to your local JOSM installation
147 **********************************************************
148 -->
149 <target name="install" depends="dist">
150 <property environment="env"/>
151 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
152 <and>
153 <os family="windows"/>
154 </and>
155 </condition>
156 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
157 </target>
158</project>
Note: See TracBrowser for help on using the repository browser.