source: josm/trunk/build.xml@ 7040

Last change on this file since 7040 was 7040, checked in by Don-vip, 10 years ago

tests/build update:

  • update Jacoco to version 0.7.0
  • compile performance tests even if not run by ant task
  • do not create empty package-info.class files in javac task
  • move RemoteControl test to unit tests to get coverage information
  • fix NPEs seen in tests in headless mode
  • proper test failures when properties files can not be loaded


File size: 21.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!-- ** build.xml - main ant file for JOSM
3**
4** To build run
5** ant clean
6** ant dist
7** This will create 'josm-custom.jar' in directory 'dist'. See also
8** https://josm.openstreetmap.de/wiki/CreateBuild
9**
10-->
11<project xmlns:as="antlib:org.codehaus.mojo.animal_sniffer" name="josm" default="dist" basedir="." xmlns:jacoco="antlib:org.jacoco.ant">
12 <property name="test.dir" location="test"/>
13 <property name="src.dir" location="src"/>
14 <property name="build.dir" location="build"/>
15 <property name="javacc.home" location="tools"/>
16 <property name="mapcss.dir" location="${src.dir}/org/openstreetmap/josm/gui/mappaint/mapcss"/>
17 <!-- build parameter: compression level (ant -Dclevel=N)
18 N ranges from 0 (no compression) to 9 (maximum compression)
19 default: 9 -->
20 <condition property="clevel" value="${clevel}" else="9">
21 <isset property="clevel"/>
22 </condition>
23 <!-- Java classpath addition (all jar files to compile tests with this) -->
24 <path id="classpath">
25 <fileset dir="lib">
26 <include name="**/*.jar"/>
27 </fileset>
28 </path>
29
30 <!--
31 ** Used by Eclipse ant builder for updating
32 ** the REVISION file used by JOSM
33 -->
34 <target name="create-revision-eclipse">
35 <property name="revision.dir" value="bin"/>
36 <antcall target="create-revision"/>
37 </target>
38 <!--
39 ** Initializes the REVISION.XML file from SVN information
40 -->
41 <target name="init-svn-revision-xml">
42 <exec append="false" output="REVISION.XML" executable="svn" failifexecutionfails="false" resultproperty="svn.info.result">
43 <env key="LANG" value="C"/>
44 <arg value="info"/>
45 <arg value="--xml"/>
46 <arg value="."/>
47 </exec>
48 <condition property="svn.info.success">
49 <equals arg1="${svn.info.result}" arg2="0" />
50 </condition>
51 </target>
52 <!--
53 ** Initializes the REVISION.XML file from git information
54 -->
55 <target name="init-git-revision-xml" unless="svn.info.success">
56 <exec append="false" output="REVISION.XML" executable="git" failifexecutionfails="false">
57 <arg value="log"/>
58 <arg value="-1"/>
59 <arg value="--grep=git-svn-id"/>
60 <!--
61 %B: raw body (unwrapped subject and body)
62 %n: new line
63 %ai: author date, ISO 8601 format
64 -->
65 <arg value="--pretty=format:%B%n%ai"/>
66 <arg value="HEAD"/>
67 </exec>
68 <replaceregexp file="REVISION.XML" flags="s"
69 match=".*git-svn-id: [^@]*@([0-9]+).*(\d{4}-\d{2}-\d{2}.\d{2}\:\d{2}\:\d{2}\s*[+-]\d{2}:?\d{2})\s*$"
70 replace="&lt;info&gt;&lt;entry&gt;&lt;commit revision=&quot;\1&quot;&gt;&lt;date&gt;\2&lt;/date&gt;&lt;/commit&gt;&lt;/entry&gt;&lt;/info&gt;"/>
71 </target>
72 <!--
73 ** Creates the REVISION file to be included in the distribution
74 -->
75 <target name="create-revision" depends="init-svn-revision-xml, init-git-revision-xml">
76 <property name="revision.dir" value="${build.dir}"/>
77 <xmlproperty file="REVISION.XML" prefix="version" keepRoot="false" collapseAttributes="true"/>
78 <delete file="REVISION.XML"/>
79 <tstamp>
80 <format property="build.tstamp" pattern="yyyy-MM-dd HH:mm:ss"/>
81 </tstamp>
82 <property name="version.entry.commit.revision" value="UNKNOWN"/>
83 <property name="version.entry.commit.date" value="UNKNOWN"/>
84 <mkdir dir="${revision.dir}"/>
85 <!-- add Build-Name: ... when making special builds, e.g. DEBIAN -->
86 <echo file="${revision.dir}/REVISION">
87# automatically generated by JOSM build.xml - do not edit
88Revision: ${version.entry.commit.revision}
89Is-Local-Build: true
90Build-Date: ${build.tstamp}
91</echo>
92 </target>
93 <!--
94 ** Check internal XML files against their XSD
95 -->
96 <target name="check-schemas">
97 <schemavalidate file="data/defaultpresets.xml" >
98 <schema namespace="http://josm.openstreetmap.de/tagging-preset-1.0" file="data/tagging-preset.xsd" />
99 </schemavalidate>
100 <schemavalidate file="styles/standard/elemstyles.xml" >
101 <schema namespace="http://josm.openstreetmap.de/mappaint-style-1.0" file="data/mappaint-style.xsd" />
102 </schemavalidate>
103 </target>
104 <!--
105 ** Main target that builds JOSM and checks XML against schemas
106 -->
107 <target name="dist" depends="compile,create-revision,check-schemas">
108 <echo>Revision ${version.entry.commit.revision}</echo>
109 <copy file="CONTRIBUTION" todir="build"/>
110 <copy file="README" todir="build"/>
111 <copy file="LICENSE" todir="build"/>
112 <!-- create josm-custom.jar -->
113 <delete file="dist/josm-custom.jar"/>
114 <jar destfile="dist/josm-custom.jar" basedir="build" level="${clevel}">
115 <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
116 <manifest>
117 <attribute name="Main-class" value="JOSM"/>
118 <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
119 <attribute name="Main-Date" value="${version.entry.commit.date}"/>
120 <attribute name="Permissions" value="all-permissions"/>
121 <attribute name="Codebase" value="josm.openstreetmap.de"/>
122 <attribute name="Application-Name" value="JOSM - Java OpenStreetMap Editor"/>
123 </manifest>
124 <zipfileset dir="images" prefix="images"/>
125 <zipfileset dir="data" prefix="data"/>
126 <zipfileset dir="styles" prefix="styles"/>
127 <zipfileset dir="src/org/openstreetmap/gui/jmapviewer/images" prefix="org/openstreetmap/gui/jmapviewer/images"/>
128 <!-- All jar files necessary to run only JOSM (no tests) -->
129 <!-- <zipfileset src="lib/metadata-extractor-2.3.1-nosun.jar"/> -->
130 <!-- <zipfileset src="lib/signpost-core-1.2.1.1.jar"/> -->
131 </jar>
132 </target>
133 <!-- Mac OS X target -->
134 <target name="mac">
135 <!-- Using https://bitbucket.org/infinitekind/appbundler to create mac application bundle -->
136 <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="tools/appbundler-1.0ea.jar"/>
137 <!-- create MacOS X application bundle -->
138 <bundleapp outputdirectory="${bundle.outdir}" name="JOSM" displayname="JOSM" executablename="JOSM" identifier="org.openstreetmap.josm"
139 mainclassname="org.openstreetmap.josm.gui.MainApplication"
140 copyright="JOSM, and all its integral parts, are released under the GNU General Public License v2 or later"
141 applicationCategory="public.app-category.utilities"
142 shortversion="${version.entry.commit.revision} SVN"
143 version="${version.entry.commit.revision} SVN"
144 icon="macosx/JOSM.app/Contents/Resources/JOSM.icns"
145 highResolutionCapable="true">
146
147 <arch name="x86_64"/>
148 <arch name="i386"/>
149
150 <classpath file="${bundle.jar}"/>
151
152 <option value="-Xmx512m"/>
153
154 <option value="-Xdock:icon=Contents/Resources/JOSM.icns"/>
155 <option value="-Xdock:name=JOSM"/>
156
157 <!-- OSX specific options, optional -->
158 <option value="-Dapple.laf.useScreenMenuBar=true"/>
159 <option value="-Dcom.apple.macos.use-file-dialog-packages=true"/>
160 <option value="-Dcom.apple.macos.useScreenMenuBar=true"/>
161 <option value="-Dcom.apple.mrj.application.apple.menu.about.name=JOSM"/>
162 <option value="-Dcom.apple.smallTabs=true"/>
163 </bundleapp>
164
165 <!-- appbundler lacks the possibility of defining our own keys or using a template, so update the .plist manually -->
166 <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask" classpath="tools/xmltask.jar"/>
167
168 <xmltask source="${bundle.outdir}/JOSM.app/Contents/Info.plist" dest="${bundle.outdir}/JOSM.app/Contents/Info.plist" indent="false">
169 <insert position="before" path="/plist/dict/key[1]"><![CDATA[<key>CFBundleAllowMixedLocalizations</key>
170<string>true</string>
171]]></insert>
172 </xmltask>
173
174 <!-- create ZIP file with MacOS X application bundle -->
175 <zip destfile="${bundle.outdir}/josm-custom-macosx.zip" update="true">
176 <zipfileset dir="." includes="CONTRIBUTION README LICENSE"/>
177 <zipfileset dir="${bundle.outdir}" includes="JOSM.app/**/*" filemode="755" />
178 </zip>
179 </target>
180 <target name="distmac" depends="dist">
181 <antcall target="mac">
182 <param name="bundle.outdir" value="dist"/>
183 <param name="bundle.jar" value="dist/josm-custom.jar"/>
184 </antcall>
185 </target>
186 <target name="javacc" depends="init" unless="javacc.notRequired">
187 <mkdir dir="${mapcss.dir}/parsergen"/>
188 <exec append="false" executable="java" failifexecutionfails="true">
189 <arg value="-cp"/>
190 <arg value="${javacc.home}/javacc.jar"/>
191 <arg value="javacc"/>
192 <arg value="-JDK_VERSION=1.7"/>
193 <arg value="-GRAMMAR_ENCODING=UTF-8"/>
194 <arg value="-OUTPUT_DIRECTORY=${mapcss.dir}/parsergen"/>
195 <arg value="${mapcss.dir}/MapCSSParser.jj"/>
196 </exec>
197 </target>
198 <target name="compile" depends="init,javacc">
199 <!-- COTS -->
200 <javac srcdir="src" includes="com/**,oauth/**,org/apache/commons/codec/**,org/glassfish/**" nowarn="on"
201 destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="iso-8859-1">
202 <!-- get rid of "internal proprietary API" warning -->
203 <compilerarg value="-XDignore.symbol.file"/>
204 </javac>
205 <!-- JMapViewer/JOSM -->
206 <javac srcdir="src" excludes="com/**,oauth/**,org/apache/commons/codec/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java"
207 destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
208 <compilerarg value="-Xlint:cast"/>
209 <compilerarg value="-Xlint:deprecation"/>
210 <compilerarg value="-Xlint:dep-ann"/>
211 <compilerarg value="-Xlint:divzero"/>
212 <compilerarg value="-Xlint:empty"/>
213 <compilerarg value="-Xlint:finally"/>
214 <compilerarg value="-Xlint:overrides"/>
215 <!--<compilerarg value="-Xlint:rawtypes"/>-->
216 <compilerarg value="-Xlint:static"/>
217 <compilerarg value="-Xlint:try"/>
218 <compilerarg value="-Xlint:unchecked"/>
219 </javac>
220 <copy todir="build" failonerror="no" includeemptydirs="no">
221 <fileset dir="resources"/>
222 </copy>
223 </target>
224 <target name="init">
225 <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
226 <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
227 </uptodate>
228 <mkdir dir="build"/>
229 <mkdir dir="dist"/>
230 </target>
231 <target name="javadoc">
232 <javadoc destdir="javadoc"
233 sourcepath="src"
234 encoding="UTF-8"
235 packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
236 windowtitle="JOSM"
237 use="true"
238 private="true"
239 linksource="true"
240 author="false">
241 <link href="http://docs.oracle.com/javase/7/docs/api"/>
242 <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
243 <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
244 </javadoc>
245 </target>
246 <target name="clean">
247 <delete dir="build"/>
248 <delete dir="dist"/>
249 <delete dir="${mapcss.dir}/parsergen"/>
250 </target>
251 <path id="test.classpath">
252 <fileset dir="${test.dir}/lib">
253 <include name="**/*.jar"/>
254 </fileset>
255 <fileset dir="lib">
256 <include name="**/*.jar"/>
257 </fileset>
258 <pathelement path="dist/josm-custom.jar"/>
259 </path>
260 <target name="test-init">
261 <mkdir dir="${test.dir}/build"/>
262 <mkdir dir="${test.dir}/report"/>
263 </target>
264 <target name="test-clean">
265 <delete dir="${test.dir}/build"/>
266 <delete dir="${test.dir}/report"/>
267 <delete file="${test.dir}/jacoco.exec" />
268 </target>
269 <target name="test-compile" depends="test-init,dist">
270 <javac srcdir="${test.dir}/unit" classpathref="test.classpath" destdir="${test.dir}/build" target="1.7" source="1.7" debug="on"
271 includeantruntime="false" createMissingPackageInfoClass="off" encoding="UTF-8">
272 <compilerarg value="-Xlint:all"/>
273 <compilerarg value="-Xlint:-serial"/>
274 </javac>
275 <javac srcdir="${test.dir}/functional" classpathref="test.classpath" destdir="${test.dir}/build" target="1.7" source="1.7" debug="on"
276 includeantruntime="false" createMissingPackageInfoClass="off" encoding="UTF-8">
277 <compilerarg value="-Xlint:all"/>
278 <compilerarg value="-Xlint:-serial"/>
279 </javac>
280 <javac srcdir="${test.dir}/performance" classpathref="test.classpath" destdir="${test.dir}/build" target="1.7" source="1.7" debug="on"
281 includeantruntime="false" createMissingPackageInfoClass="off" encoding="UTF-8">
282 <compilerarg value="-Xlint:all"/>
283 <compilerarg value="-Xlint:-serial"/>
284 </javac>
285 </target>
286 <target name="test" depends="test-compile">
287 <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="tools/jacocoant.jar" />
288 <jacoco:coverage destfile="${test.dir}/jacoco.exec">
289 <junit printsummary="yes" fork="true" forkmode="once">
290 <sysproperty key="josm.home" value="${test.dir}/config/unit-josm.home"/>
291 <sysproperty key="josm.test.data" value="${test.dir}/data"/>
292 <sysproperty key="java.awt.headless" value="true"/>
293 <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
294 <classpath>
295 <path refid="test.classpath"/>
296 <pathelement path="${test.dir}/build"/>
297 <pathelement path="${test.dir}/config"/>
298 </classpath>
299 <formatter type="plain"/>
300 <formatter type="xml"/>
301 <batchtest fork="yes" todir="${test.dir}/report">
302 <fileset dir="${test.dir}/unit" includes="**/*.java"/>
303 </batchtest>
304 </junit>
305 </jacoco:coverage>
306 </target>
307 <target name="test-html" depends="test" description="Generate HTML test reports">
308 <!-- May require additional ant dependencies like ant-trax package -->
309 <junitreport todir="${test.dir}/report">
310 <fileset dir="${test.dir}/report">
311 <include name="TEST-*.xml"/>
312 </fileset>
313 <report todir="${test.dir}/report/html"/>
314 </junitreport>
315 <jacoco:report>
316 <executiondata>
317 <file file="${test.dir}/jacoco.exec"/>
318 </executiondata>
319 <structure name="JOSM Test Coverage">
320 <classfiles>
321 <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
322 </classfiles>
323 <sourcefiles encoding="UTF-8">
324 <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
325 </sourcefiles>
326 </structure>
327 <html destdir="${test.dir}/report/jacoco"/>
328 </jacoco:report>
329 </target>
330 <target name="dist-optimized" depends="dist">
331 <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard.jar"/>
332 <proguard>
333 -injars dist/josm-custom.jar
334 -outjars dist/josm-custom-optimized.jar
335
336 -libraryjars ${java.home}/lib/rt.jar
337 -libraryjars ${java.home}/lib/jce.jar
338
339 -dontoptimize
340 -dontobfuscate
341
342 # These options probably are not necessary (and make processing a bit slower)
343 -dontskipnonpubliclibraryclasses
344 -dontskipnonpubliclibraryclassmembers
345
346 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
347 public static void main(java.lang.String[]);
348 }
349 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplet
350
351 -keep class JOSM
352 -keep class * extends org.openstreetmap.josm.io.FileImporter
353 -keep class * extends org.openstreetmap.josm.io.FileExporter
354 -keep class org.openstreetmap.josm.data.imagery.types.Adapter1
355 -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
356
357 -keepclassmembers enum * {
358 public static **[] values();
359 public static ** valueOf(java.lang.String);
360 }
361
362 # Keep unused public methods (can be useful for plugins)
363 -keepclassmembers class * {
364 public protected *;
365 }
366
367 # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'. This notes should not be a problem as we don't use obfuscation
368 -dontnote
369 </proguard>
370 </target>
371 <target name="check-plugins" depends="dist-optimized">
372 <echo message="Check of plugins binary compatibility (needs ant 1.8)"/>
373 <local name="dir"/>
374 <local name="plugins"/>
375 <property name="dir" value="plugin-check"/>
376 <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
377 <classpath path="tools/animal-sniffer-ant-tasks-1.8.jar"/>
378 </typedef>
379 <mkdir dir="${dir}"/>
380 <!-- List of deprecated plugins -->
381 <loadfile property="deprecated-plugins" srcFile="src/org/openstreetmap/josm/plugins/PluginHandler.java">
382 <filterchain>
383 <linecontains>
384 <contains value="new DeprecatedPlugin("/>
385 </linecontains>
386 <tokenfilter>
387 <replaceregex pattern=".*new DeprecatedPlugin\(&quot;(.+?)&quot;.*" replace="\1|" flags="gi"/>
388 </tokenfilter>
389 <striplinebreaks/>
390 <tokenfilter>
391 <replaceregex pattern="\|$" replace="" flags="gi"/>
392 </tokenfilter>
393 </filterchain>
394 </loadfile>
395 <!-- Download list of plugins -->
396 <loadresource property="plugins">
397 <url url="https://josm.openstreetmap.de/plugin"/>
398 <filterchain>
399 <linecontainsregexp negate="true">
400 <regexp pattern="^\t.*"/>
401 </linecontainsregexp>
402 <linecontainsregexp negate="true">
403 <regexp pattern="${deprecated-plugins}"/>
404 </linecontainsregexp>
405 <tokenfilter>
406 <replaceregex pattern="^.*;" replace="" flags="gi"/>
407 </tokenfilter>
408 </filterchain>
409 </loadresource>
410 <!-- Delete files that are not in plugin list (like old plugins) -->
411 <loadresource property="file-list">
412 <propertyresource name="plugins"/>
413 <filterchain>
414 <tokenfilter>
415 <replaceregex pattern="^.*/(.*)$" replace="\1\|" flags=""/>
416 </tokenfilter>
417 <striplinebreaks/>
418 <tokenfilter>
419 <replaceregex pattern="\|$" replace="" flags="gi"/>
420 </tokenfilter>
421 </filterchain>
422 </loadresource>
423 <delete>
424 <restrict>
425 <fileset dir="${dir}"/>
426 <not>
427 <name regex="${file-list}"/>
428 </not>
429 </restrict>
430 </delete>
431 <!-- Download plugins -->
432 <copy todir="${dir}" flatten="true">
433 <resourcelist>
434 <string value="${plugins}"/>
435 </resourcelist>
436 </copy>
437 <!-- Check plugins -->
438 <as:build-signatures destfile="${dir}/api.sig">
439 <path>
440 <fileset file="dist/josm-custom-optimized.jar"/>
441 <fileset file="${java.home}/lib/rt.jar"/>
442 <fileset file="${java.home}/lib/jce.jar"/>
443 </path>
444 </as:build-signatures>
445 <as:check-signature signature="${dir}/api.sig">
446 <ignore classname="org.jgraph.*"/>
447 <ignore classname="com.touchgraph.*"/>
448 <ignore classname="com.sun.xml.fastinfoset.*"/>
449 <ignore classname="javax.jms.*"/>
450 <ignore classname="org.jvnet.staxex.*"/>
451 <ignore classname="javax.mail.*"/>
452 <ignore classname="com.sun.jdmk.*"/>
453 <ignore classname="org.apache.avalon.framework.logger.Logger"/>
454 <ignore classname="org.apache.log.*"/>
455 <ignore classname="junit.*"/>
456 <path path="${dir}"/>
457 </as:check-signature>
458 </target>
459
460 <target name="findbugs" depends="dist">
461 <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>
462 <path id="findbugs-classpath">
463 <fileset dir="tools/findbugs/">
464 <include name="*.jar"/>
465 </fileset>
466 </path>
467 <property name="findbugs-classpath" refid="findbugs-classpath"/>
468 <findbugs output="xml"
469 outputFile="findbugs-josm.xml"
470 classpath="${findbugs-classpath}"
471 pluginList=""
472 excludeFilter="tools/findbugs/josm-filter.xml"
473 effort="max"
474 >
475 <sourcePath path="${basedir}/src" />
476 <class location="${basedir}/dist/josm-custom.jar" />
477 </findbugs>
478 </target>
479 <target name="run" depends="dist">
480 <java jar="dist/josm-custom.jar" fork="true">
481 <arg value="--set=expert=true"/>
482 <arg value="--set=remotecontrol.enabled=true"/>
483 <arg value="--set=debug.edt-checker.enable=false"/>
484 <jvmarg value="-Djosm.home=/tmp/.josm/"/>
485 </java>
486 </target>
487
488</project>
Note: See TracBrowser for help on using the repository browser.