source: osm/applications/editors/josm/plugins/FixAddresses/build.xml@ 27768

Last change on this file since 27768 was 27341, checked in by oliverw, 15 years ago

'Bugfix #7169: Added option to ignore post codes.'

  • 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: 9.9 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="FixAddresses" default="dist" basedir=".">
24 <!-- enter the SVN commit message -->
25 <property name="commit.message" value="Bugfix #7169: Added option to ignore post codes."/>
26
27 <!--
28 ************************************************
29 ** should not be necessary to change the following properties
30 -->
31 <property name="josm" location="../../core/dist/josm-custom.jar"/>
32 <property name="plugin.build.dir" value="build"/>
33 <property name="plugin.src.dir" value="src"/>
34 <!-- this is the directory where the plugin jar is copied to -->
35 <property name="plugin.dist.dir" value="../../dist"/>
36 <property name="ant.build.javac.target" value="1.5"/>
37 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
38 <!--
39 **********************************************************
40 ** init - initializes the build
41 **********************************************************
42 -->
43 <target name="init">
44 <mkdir dir="${plugin.build.dir}"/>
45 </target>
46 <!--
47 **********************************************************
48 ** compile - complies the source tree
49 **********************************************************
50 -->
51 <target name="compile" depends="init">
52 <echo message="compiling sources for ${plugin.jar} ... "/>
53 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeantruntime="false">
54 <compilerarg value="-Xlint:deprecation"/>
55 <compilerarg value="-Xlint:unchecked"/>
56 </javac>
57 </target>
58 <!--
59 **********************************************************
60 ** dist - creates the plugin jar
61 **********************************************************
62 -->
63 <target name="dist" depends="compile,revision">
64 <mkdir dir="${plugin.dist.dir}"/>
65 <echo message="creating ${plugin.jar} ... "/>
66 <copy todir="${plugin.build.dir}/resources">
67 <fileset dir="resources"/>
68 </copy>
69 <copy todir="${plugin.build.dir}/images">
70 <fileset dir="images"/>
71 </copy>
72 <copy todir="${plugin.build.dir}/data">
73 <fileset dir="data"/>
74 </copy>
75 <copy todir="${plugin.build.dir}">
76 <fileset dir=".">
77 <include name="README"/>
78 <include name="GPL-v2.0.txt"/>
79 <include name="GPL-v3.0.txt"/>
80 </fileset>
81 </copy>
82 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
83 <!--
84 ************************************************
85 ** configure these properties. Most of them will be copied to the plugins
86 ** manifest file. Property values will also show up in the list available
87 ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
88 **
89 ************************************************
90 -->
91 <manifest>
92 <attribute name="Author" value="Oliver Wieland"/>
93 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.fixAddresses.FixAddressesPlugin"/>
94 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
95 <attribute name="Plugin-Description" value="Finds and fixes invalid street addresses in a comfortable way."/>
96 <attribute name="de_Plugin-Description" value="Findet ungültige Addressen und bietet Unterstützung zur deren Korrektur."/>
97 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/FixAddresses"/>
98 <attribute name="Plugin-Mainversion" value="4549"/>
99 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
100 <attribute name="Plugin-Icon" value="images/fixaddresses.png"/>
101 </manifest>
102 </jar>
103 </target>
104 <!--
105 **********************************************************
106 ** revision - extracts the current revision number for the
107 ** file build.number and stores it in the XML property
108 ** version.*
109 **********************************************************
110 -->
111 <target name="revision">
112 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
113 <env key="LANG" value="C"/>
114 <arg value="info"/>
115 <arg value="--xml"/>
116 <arg value="."/>
117 </exec>
118 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
119 <echo message="Revision: ${version.entry.commit.revision}"/>
120 <delete file="REVISION"/>
121 </target>
122 <!--
123 **********************************************************
124 ** clean - clean up the build environment
125 **********************************************************
126 -->
127 <target name="clean">
128 <delete dir="${plugin.build.dir}"/>
129 <delete file="${plugin.jar}"/>
130 </target>
131 <!--
132 **********************************************************
133 ** install - install the plugin in your local JOSM installation
134 **********************************************************
135 -->
136 <target name="install" depends="dist">
137 <property environment="env"/>
138 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
139 <and>
140 <os family="windows"/>
141 </and>
142 </condition>
143 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
144 </target>
145
146 <!--
147 ************************** Publishing the plugin ***********************************
148 -->
149 <!--
150 ** extracts the JOSM release for the JOSM version in ../core and saves it in the
151 ** property ${coreversion.info.entry.revision}
152 **
153 -->
154 <target name="core-info">
155 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
156 <env key="LANG" value="C"/>
157 <arg value="info"/>
158 <arg value="--xml"/>
159 <arg value="../../core"/>
160 </exec>
161 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
162 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
163 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
164 <delete file="core.info.xml"/>
165 </target>
166 <!--
167 ** commits the source tree for this plugin
168 -->
169 <target name="commit-current">
170 <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
171 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
172 <env key="LANG" value="C"/>
173 <arg value="commit"/>
174 <arg value="-m '${commit.message}'"/>
175 <arg value="."/>
176 </exec>
177 </target>
178 <!--
179 ** updates (svn up) the source tree for this plugin
180 -->
181 <target name="update-current">
182 <echo>Updating plugin source ...</echo>
183 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
184 <env key="LANG" value="C"/>
185 <arg value="up"/>
186 <arg value="."/>
187 </exec>
188 <echo>Updating ${plugin.jar} ...</echo>
189 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
190 <env key="LANG" value="C"/>
191 <arg value="up"/>
192 <arg value="../dist/${plugin.jar}"/>
193 </exec>
194 </target>
195 <!--
196 ** commits the plugin.jar
197 -->
198 <target name="commit-dist">
199 <echo>
200 ***** Properties of published ${plugin.jar} *****
201 Commit message : '${commit.message}'
202 Plugin-Mainversion: ${plugin.main.version}
203 JOSM build version: ${coreversion.info.entry.revision}
204 Plugin-Version : ${version.entry.commit.revision}
205 ***** / Properties of published ${plugin.jar} *****
206
207 Now commiting ${plugin.jar} ...
208 </echo>
209 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
210 <env key="LANG" value="C"/>
211 <arg value="-m '${commit.message}'"/>
212 <arg value="commit"/>
213 <arg value="${plugin.jar}"/>
214 </exec>
215 </target>
216 <!-- ** make sure svn is present as a command line tool ** -->
217 <target name="ensure-svn-present">
218 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code">
219 <env key="LANG" value="C"/>
220 <arg value="--version"/>
221 </exec>
222 <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system.">
223 <!-- return code not set at all? Most likely svn isn't installed -->
224 <condition>
225 <not>
226 <isset property="svn.exit.code"/>
227 </not>
228 </condition>
229 </fail>
230 <fail message="Fatal: command 'svn --version' failed. Please make sure a working copy of svn is installed on your system.">
231 <!-- error code from SVN? Most likely svn is not what we are looking on this system -->
232 <condition>
233 <isfailure code="${svn.exit.code}"/>
234 </condition>
235 </fail>
236 </target>
237 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
238 </target>
239</project>
Note: See TracBrowser for help on using the repository browser.