source: osm/applications/editors/josm/plugins/turnrestrictions/build.xml@ 26986

Last change on this file since 26986 was 26660, checked in by jttt, 13 years ago

Recompile to make it work with josm 4431

File size: 13.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** This is the build file for the turnrestrictions 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** Use the ant target 'publish' to check in the plugin and make it available to other
23** JOSM users:
24** set the properties commit.message and plugin.main.version
25** and run
26** > ant publish
27**
28**
29-->
30<project name="turnrestrictions" default="dist" basedir=".">
31 <!-- enter the SVN commit message -->
32 <property name="commit.message" value="Adapt to JOSM core change (DefaultNameFormatter)"/>
33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
34 <property name="plugin.main.version" value="4431"/>
35 <!--
36 ************************************************
37 ** should not be necessary to change the following properties
38 -->
39 <property name="josm" location="../../core/dist/josm-custom.jar"/>
40 <property name="plugin.build.dir" value="build"/>
41 <property name="plugin.src.dir" value="src"/>
42 <!-- this is the directory where the plugin jar is copied to -->
43 <property name="plugin.dist.dir" value="dist"/>
44 <property name="ant.build.javac.target" value="1.6"/>
45 <property name="plugin.jar" value="../../dist/${ant.project.name}.jar"/>
46 <property name="test.build.dir" value="test/build"/>
47 <!--
48 **********************************************************
49 ** init - initializes the build
50 **********************************************************
51 -->
52 <target name="init">
53 <mkdir dir="${plugin.build.dir}"/>
54 <mkdir dir="${test.build.dir}"/>
55 </target>
56 <!--
57 **********************************************************
58 ** compile - complies the source tree
59 **********************************************************
60 -->
61 <target name="compile" depends="init">
62 <echo message="compiling sources for ${plugin.jar} ... "/>
63 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
64 <compilerarg value="-Xlint:deprecation"/>
65 <compilerarg value="-Xlint:unchecked"/>
66 </javac>
67 </target>
68 <!--
69 **********************************************************
70 ** dist - creates the plugin jar
71 **********************************************************
72 -->
73 <target name="dist" depends="compile,revision">
74 <echo message="creating ${ant.project.name}.jar ... "/>
75 <copy todir="${plugin.build.dir}/resources">
76 <fileset dir="resources"/>
77 </copy>
78 <copy todir="${plugin.build.dir}/images">
79 <fileset dir="images"/>
80 </copy>
81 <copy todir="${plugin.build.dir}/data">
82 <fileset dir="data"/>
83 </copy>
84 <copy todir="${plugin.build.dir}">
85 <fileset dir=".">
86 <include name="README"/>
87 <include name="LICENSE"/>
88 </fileset>
89 </copy>
90 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
91 <!--
92 ************************************************
93 ** configure these properties. Most of them will be copied to the plugins
94 ** manifest file. Property values will also show up in the list available
95 ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
96 **
97 ************************************************
98 -->
99 <manifest>
100 <attribute name="Author" value="Karl Guggisberg"/>
101 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.turnrestrictions.TurnRestrictionsPlugin"/>
102 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
103 <attribute name="Plugin-Description" value="The turnrestrictions plugin allows to enter maintain information about turn restrictions in the OpenStreetMap database."/>
104 <attribute name="Plugin-Icon" value="images/preferences/turnrestrictions.png"/>
105 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/turnrestrictions"/>
106 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
107 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
108 </manifest>
109 </jar>
110 </target>
111 <!--
112 **********************************************************
113 ** revision - extracts the current revision number for the
114 ** file build.number and stores it in the XML property
115 ** version.*
116 **********************************************************
117 -->
118 <target name="revision">
119 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
120 <env key="LANG" value="C"/>
121 <arg value="info"/>
122 <arg value="--xml"/>
123 <arg value="."/>
124 </exec>
125 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
126 <delete file="REVISION"/>
127 </target>
128 <!--
129 **********************************************************
130 ** clean - clean up the build environment
131 **********************************************************
132 -->
133 <target name="clean">
134 <delete dir="${plugin.build.dir}"/>
135 <delete file="${plugin.jar}"/>
136 </target>
137 <!--
138 **********************************************************
139 ** install - install the plugin in your local JOSM installation
140 **********************************************************
141 -->
142 <target name="install" depends="dist">
143 <property environment="env"/>
144 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
145 <and>
146 <os family="windows"/>
147 </and>
148 </condition>
149 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
150 </target>
151 <!--
152 ************************** Publishing the plugin ***********************************
153 -->
154 <!--
155 ** extracts the JOSM release for the JOSM version in ../core and saves it in the
156 ** property ${coreversion.info.entry.revision}
157 **
158 -->
159 <target name="core-info">
160 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
161 <env key="LANG" value="C"/>
162 <arg value="info"/>
163 <arg value="--xml"/>
164 <arg value="../../core"/>
165 </exec>
166 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
167 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
168 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
169 <delete file="core.info.xml"/>
170 </target>
171 <!--
172 ** commits the source tree for this plugin
173 -->
174 <target name="commit-current">
175 <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
176 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
177 <env key="LANG" value="C"/>
178 <arg value="commit"/>
179 <arg value="-m '${commit.message}'"/>
180 <arg value="."/>
181 </exec>
182 </target>
183 <!--
184 ** updates (svn up) the source tree for this plugin
185 -->
186 <target name="update-current">
187 <echo>Updating plugin source ...</echo>
188 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
189 <env key="LANG" value="C"/>
190 <arg value="up"/>
191 <arg value="."/>
192 </exec>
193 <echo>Updating ${plugin.jar} ...</echo>
194 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
195 <env key="LANG" value="C"/>
196 <arg value="up"/>
197 <arg value="../dist/${plugin.jar}"/>
198 </exec>
199 </target>
200 <!--
201 ** commits the plugin.jar
202 -->
203 <target name="commit-dist">
204 <echo>
205 ***** Properties of published ${plugin.jar} *****
206 Commit message : '${commit.message}'
207 Plugin-Mainversion: ${plugin.main.version}
208 JOSM build version: ${coreversion.info.entry.revision}
209 Plugin-Version : ${version.entry.commit.revision}
210 ***** / Properties of published ${plugin.jar} *****
211
212 Now commiting ${plugin.jar} ...
213 </echo>
214 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
215 <env key="LANG" value="C"/>
216 <arg value="-m '${commit.message}'"/>
217 <arg value="commit"/>
218 <arg value="${plugin.jar}"/>
219 </exec>
220 </target>
221 <!-- ** make sure svn is present as a command line tool ** -->
222 <target name="ensure-svn-present">
223 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code">
224 <env key="LANG" value="C"/>
225 <arg value="--version"/>
226 </exec>
227 <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system.">
228 <!-- return code not set at all? Most likely svn isn't installed -->
229 <condition>
230 <not>
231 <isset property="svn.exit.code"/>
232 </not>
233 </condition>
234 </fail>
235 <fail message="Fatal: command 'svn --version' failed. Please make sure a working copy of svn is installed on your system.">
236 <!-- error code from SVN? Most likely svn is not what we are looking on this system -->
237 <condition>
238 <isfailure code="${svn.exit.code}"/>
239 </condition>
240 </fail>
241 </target>
242 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
243 </target>
244 <!-- ************************************************************************************ -->
245 <!-- * Targets for compiling and running tests -->
246 <!-- ************************************************************************************ -->
247 <property name="eclipse.plugin.dir" value="C:\software\eclipse-3.6.1\plugins"/>
248 <path id="groovy.path">
249 <pathelement location="${eclipse.plugin.dir}/org.codehaus.groovy_1.7.5.xx-20100926-2000-e36-RC1\lib\groovy-all-1.7.5.jar"/>
250 </path>
251 <path id="junit.path">
252 <pathelement location="${eclipse.plugin.dir}/org.junit_4.8.1.v4_8_1_v20100427-1100\junit.jar"/>
253 </path>
254 <path id="fest.library.path">
255 <fileset dir="test/lib">
256 <include name="fest-*.jar"/>
257 <include name="jcp-*.jar"/>
258 </fileset>
259 </path>
260 <path id="test.class.path">
261 <pathelement location="${josm}"/>
262 <pathelement location="${plugin.build.dir}"/>
263 <path refid="groovy.path"/>
264 <path refid="junit.path"/>
265 <path refid="fest.library.path"/>
266 </path>
267 <path id="groovyc.path">
268 <path refid="junit.path"/>
269 <path refid="groovy.path"/>
270 <path refid="fest.library.path"/>
271 <pathelement location="${josm}"/>
272 <pathelement location="${test.build.dir}"/>
273 <pathelement location="${plugin.build.dir}"/>
274 <!-- if we didn't explicitly put hamcrest on the class path, groovyc would
275 abort and report it is missing a hamcrest class -->
276 <pathelement location="test/lib/hamcrest-all-1.2.jar"/>
277 </path>
278 <target name="test-clean">
279 <delete dir="${test.build.dir}"/>
280 <mkdir dir="${test.build.dir}"/>
281 </target>
282 <target name="test-compile" depends="compile,test-clean" description="Compiles the test files">
283 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpathref="groovy.path"/>
284 <echo message="compiling test infrastructor for ${plugin.jar} ... "/>
285 <javac srcdir="test/src" classpathref="test.class.path" debug="true" destdir="${test.build.dir}" includes="org/openstreetmap/josm/plugins/turnrestrictions/fixtures/**/*">
286 <compilerarg value="-Xlint:deprecation"/>
287 <compilerarg value="-Xlint:unchecked"/>
288 </javac>
289 <echo message="compiling groovy test cases for ${plugin.jar} ... "/>
290 <groovyc srcdir="test/src" destdir="${test.build.dir}" classpathref="groovyc.path">
291 </groovyc>
292 <echo message="compiling java test cases for ${plugin.jar} ... "/>
293 <javac srcdir="test/src" classpathref="test.class.path" debug="true" destdir="${test.build.dir}">
294 <compilerarg value="-Xlint:deprecation"/>
295 <compilerarg value="-Xlint:unchecked"/>
296 </javac>
297 </target>
298 <target name="test-run" depends="test-compile" description="Runs the junit tests">
299 <delete dir="test/output"/>
300 <mkdir dir="test/output"/>
301 <junit printsummary="true" failureproperty="junit.failure">
302 <classpath>
303 <path refid="groovyc.path"/>
304 <pathelement location="test/config"/>
305 <!-- required for test config file -->
306 <pathelement location="."/>
307 <!-- required to load images from subdir 'images/' -->
308 </classpath>
309 <test todir="test/output" name="org.openstreetmap.josm.plugins.turnrestrictions.AllUnitTests">
310 <formatter type="xml"/>
311 </test>
312 </junit>
313 </target>
314</project>
Note: See TracBrowser for help on using the repository browser.