source: josm/trunk/build.xml@ 10048

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

see #11924 - add -XaddExports:java.base/sun.security.x509=ALL-UNNAMED JVM option for JDK9 tests (see http://mreinhold.org/blog/jigsaw-module-system). Requires Ant 1.9.1 or later

  • Property svn:eol-style set to native
File size: 34.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/DevelopersGuide/CreateBuild
9**
10-->
11<project xmlns:as="antlib:org.codehaus.mojo.animal_sniffer" name="josm" default="dist" xmlns:jacoco="antlib:org.jacoco.ant" xmlns:if="ant:if">
12 <target name="init-properties">
13 <!-- Load properties in a target and not at top level, so this build file can be
14 imported from an IDE ant file (Netbeans) without messing up IDE properties.
15 When imported from another file, ${basedir} will point to the parent directory
16 of the importing ant file. Use ${base.dir} instead, which is always the parent
17 directory of this file. -->
18 <dirname property="base.dir" file="${ant.file.josm}"/>
19 <property name="test.dir" location="${base.dir}/test"/>
20 <property name="src.dir" location="${base.dir}/src"/>
21 <property name="build.dir" location="${base.dir}/build"/>
22 <property name="dist.dir" location="${base.dir}/dist"/>
23 <property name="javacc.home" location="${base.dir}/tools"/>
24 <property name="mapcss.dir" location="${src.dir}/org/openstreetmap/josm/gui/mappaint/mapcss"/>
25 <property name="proj-build.dir" location="${base.dir}/build2"/>
26 <property name="epsg.output" location="${base.dir}/data/projection/custom-epsg"/>
27 <property name="groovy.jar" location="${base.dir}/tools/groovy-all-2.4.6.jar"/>
28 <!-- build parameter: compression level (ant -Dclevel=N)
29 N ranges from 0 (no compression) to 9 (maximum compression)
30 default: 9 -->
31 <condition property="clevel" value="${clevel}" else="9">
32 <isset property="clevel"/>
33 </condition>
34 <!-- For Java9-specific stuff -->
35 <condition property="isJava9">
36 <equals arg1="${ant.java.version}" arg2="1.9" />
37 </condition>
38 <path id="test.classpath">
39 <fileset dir="${test.dir}/lib">
40 <include name="**/*.jar"/>
41 </fileset>
42 <pathelement path="${dist.dir}/josm-custom.jar"/>
43 <pathelement path="${groovy.jar}"/>
44 <pathelement path="tools/findbugs/annotations.jar"/>
45 </path>
46 </target>
47
48 <!--
49 ** Used by Eclipse ant builder for updating
50 ** the REVISION file used by JOSM
51 -->
52 <target name="create-revision-eclipse">
53 <property name="revision.dir" value="bin"/>
54 <antcall target="create-revision"/>
55 </target>
56 <!--
57 ** Initializes the REVISION.XML file from SVN information
58 -->
59 <target name="init-svn-revision-xml" depends="init-properties">
60 <exec append="false" output="${base.dir}/REVISION.XML" executable="svn" dir="${base.dir}" failifexecutionfails="false" resultproperty="svn.info.result">
61 <env key="LANG" value="C"/>
62 <arg value="info"/>
63 <arg value="--xml"/>
64 <arg value="."/>
65 </exec>
66 <condition property="svn.info.success">
67 <equals arg1="${svn.info.result}" arg2="0" />
68 </condition>
69 </target>
70 <!--
71 ** Initializes the REVISION.XML file from git information
72 -->
73 <target name="init-git-revision-xml" unless="svn.info.success" depends="init-properties">
74 <exec append="false" output="${base.dir}/REVISION.XML" executable="git" dir="${base.dir}" failifexecutionfails="false">
75 <arg value="log"/>
76 <arg value="-1"/>
77 <arg value="--grep=git-svn-id"/>
78 <!--
79 %B: raw body (unwrapped subject and body)
80 %n: new line
81 %ai: author date, ISO 8601 format
82 -->
83 <arg value="--pretty=format:%B%n%ai"/>
84 <arg value="HEAD"/>
85 </exec>
86 <replaceregexp file="${base.dir}/REVISION.XML" flags="s"
87 match=".*git-svn-id: [^@]*@([0-9]+).*(\d{4}-\d{2}-\d{2}.\d{2}\:\d{2}\:\d{2}\s*[+-]\d{2}:?\d{2})\s*$"
88 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;"/>
89 </target>
90 <!--
91 ** Creates the REVISION file to be included in the distribution
92 -->
93 <target name="create-revision" depends="init-properties,init-svn-revision-xml,init-git-revision-xml">
94 <property name="revision.dir" value="${build.dir}"/>
95 <xmlproperty file="${base.dir}/REVISION.XML" prefix="version" keepRoot="false" collapseAttributes="true"/>
96 <delete file="${base.dir}/REVISION.XML"/>
97 <tstamp>
98 <format property="build.tstamp" pattern="yyyy-MM-dd HH:mm:ss"/>
99 </tstamp>
100 <property name="version.entry.commit.revision" value="UNKNOWN"/>
101 <property name="version.entry.commit.date" value="UNKNOWN"/>
102 <mkdir dir="${revision.dir}"/>
103 <!-- add Build-Name: ... when making special builds, e.g. DEBIAN -->
104 <echo file="${revision.dir}/REVISION">
105# automatically generated by JOSM build.xml - do not edit
106Revision: ${version.entry.commit.revision}
107Is-Local-Build: true
108Build-Date: ${build.tstamp}
109</echo>
110 </target>
111 <!--
112 ** Check internal XML files against their XSD
113 -->
114 <target name="check-schemas" unless="check-schemas.notRequired" depends="init-properties">
115 <schemavalidate file="data/defaultpresets.xml" >
116 <schema namespace="http://josm.openstreetmap.de/tagging-preset-1.0" file="data/tagging-preset.xsd" />
117 </schemavalidate>
118 </target>
119 <!--
120 ** Main target that builds JOSM and checks XML against schemas
121 -->
122 <target name="dist" depends="compile,create-revision,check-schemas,epsg">
123 <echo>Revision ${version.entry.commit.revision}</echo>
124 <copy file="CONTRIBUTION" todir="build"/>
125 <copy file="README" todir="build"/>
126 <copy file="LICENSE" todir="build"/>
127 <!-- create josm-custom.jar -->
128 <delete file="${dist.dir}/josm-custom.jar"/>
129 <jar destfile="${dist.dir}/josm-custom.jar" basedir="${build.dir}" level="${clevel}">
130 <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
131 <manifest>
132 <attribute name="Main-class" value="JOSM"/>
133 <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
134 <attribute name="Main-Date" value="${version.entry.commit.date}"/>
135 <attribute name="Permissions" value="all-permissions"/>
136 <attribute name="Codebase" value="josm.openstreetmap.de"/>
137 <attribute name="Application-Name" value="JOSM - Java OpenStreetMap Editor"/>
138 </manifest>
139 <zipfileset dir="images" prefix="images"/>
140 <zipfileset dir="data" prefix="data"/>
141 <zipfileset dir="styles" prefix="styles"/>
142 <zipfileset dir="${src.dir}/org/openstreetmap/gui/jmapviewer/images" prefix="org/openstreetmap/gui/jmapviewer/images"/>
143 </jar>
144 </target>
145 <!-- Mac OS X target -->
146 <target name="mac" depends="init-properties">
147 <!-- Using https://bitbucket.org/infinitekind/appbundler to create mac application bundle -->
148 <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="tools/appbundler-1.0ea.jar"/>
149 <!-- create MacOS X application bundle -->
150 <bundleapp outputdirectory="${bundle.outdir}" name="JOSM" displayname="JOSM" executablename="JOSM" identifier="org.openstreetmap.josm"
151 mainclassname="org.openstreetmap.josm.gui.MainApplication"
152 copyright="JOSM, and all its integral parts, are released under the GNU General Public License v2 or later"
153 applicationCategory="public.app-category.utilities"
154 shortversion="${version.entry.commit.revision} SVN"
155 version="${version.entry.commit.revision} SVN"
156 icon="macosx/JOSM.app/Contents/Resources/JOSM.icns"
157 highResolutionCapable="true">
158
159 <arch name="x86_64"/>
160 <arch name="i386"/>
161
162 <classpath file="${bundle.jar}"/>
163
164 <option value="-Xmx1024m"/>
165
166 <option value="-Xdock:icon=Contents/Resources/JOSM.icns"/>
167 <option value="-Xdock:name=JOSM"/>
168
169 <!-- OSX specific options, optional -->
170 <option value="-Dapple.laf.useScreenMenuBar=true"/>
171 <option value="-Dcom.apple.macos.use-file-dialog-packages=true"/>
172 <option value="-Dcom.apple.macos.useScreenMenuBar=true"/>
173 <option value="-Dcom.apple.mrj.application.apple.menu.about.name=JOSM"/>
174 <option value="-Dcom.apple.smallTabs=true"/>
175 </bundleapp>
176
177 <!-- appbundler lacks the possibility of defining our own keys or using a template, so update the .plist manually -->
178 <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask" classpath="tools/xmltask.jar"/>
179
180 <xmltask source="${bundle.outdir}/JOSM.app/Contents/Info.plist" dest="${bundle.outdir}/JOSM.app/Contents/Info.plist" indent="false">
181 <!-- remove empty CFBundleDocumentTypes definition -->
182 <remove path="/plist/dict/key[text()='CFBundleDocumentTypes']|/plist/dict/key[text()='CFBundleDocumentTypes']/following-sibling::array[1]"/>
183 <!-- insert our own keys -->
184 <insert position="before" path="/plist/dict/key[1]" file="macosx/JOSM.app/Contents/Info.plist_template.xml" />
185 </xmltask>
186
187 <!-- create ZIP file with MacOS X application bundle -->
188 <zip destfile="${bundle.outdir}/josm-custom-macosx.zip" update="true">
189 <zipfileset dir="." includes="CONTRIBUTION README LICENSE"/>
190 <zipfileset dir="${bundle.outdir}" includes="JOSM.app/**/*" filemode="755" />
191 </zip>
192 </target>
193 <target name="distmac" depends="dist">
194 <antcall target="mac">
195 <param name="bundle.outdir" value="${dist.dir}"/>
196 <param name="bundle.jar" value="${dist.dir}/josm-custom.jar"/>
197 </antcall>
198 </target>
199 <!-- Windows target -->
200 <target name="distwin" depends="dist">
201 <exec dir="windows" executable="./josm-setup-unix.sh">
202 <arg value="${version.entry.commit.revision}"/>
203 <arg value="../dist/josm-custom.jar"/>
204 </exec>
205 </target>
206 <target name="javacc" depends="init" unless="javacc.notRequired">
207 <mkdir dir="${mapcss.dir}/parsergen"/>
208 <exec append="false" executable="java" failifexecutionfails="true">
209 <arg value="-cp"/>
210 <arg value="${javacc.home}/javacc.jar"/>
211 <arg value="javacc"/>
212 <arg value="-DEBUG_PARSER=false"/>
213 <arg value="-DEBUG_TOKEN_MANAGER=false"/>
214 <arg value="-JDK_VERSION=1.7"/>
215 <arg value="-GRAMMAR_ENCODING=UTF-8"/>
216 <arg value="-OUTPUT_DIRECTORY=${mapcss.dir}/parsergen"/>
217 <arg value="${mapcss.dir}/MapCSSParser.jj"/>
218 </exec>
219 </target>
220 <target name="compile" depends="init,javacc">
221 <!-- COTS -->
222 <javac srcdir="${src.dir}" includes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**" nowarn="on" encoding="iso-8859-1"
223 destdir="build" target="1.7" source="1.7" debug="on" includeAntRuntime="false" createMissingPackageInfoClass="false">
224 <!-- get rid of "internal proprietary API" warning -->
225 <compilerarg value="-XDignore.symbol.file"/>
226 <exclude name="org/apache/commons/compress/compressors/lzma/**"/>
227 <exclude name="org/apache/commons/compress/compressors/xz/**"/>
228 <exclude name="org/apache/commons/compress/compressors/CompressorStreamFactory.java"/>
229 <exclude name="org/apache/commons/compress/compressors/deflate/**"/>
230 <exclude name="org/apache/commons/compress/compressors/gzip/**"/>
231 <exclude name="org/apache/commons/compress/compressors/lzw/**"/>
232 <exclude name="org/apache/commons/compress/compressors/pack200/**"/>
233 <exclude name="org/apache/commons/compress/compressors/snappy/**"/>
234 <exclude name="org/apache/commons/compress/compressors/z/**"/>
235 <exclude name="org/apache/commons/jcs/admin/**"/>
236 <exclude name="org/apache/commons/jcs/auxiliary/disk/jdbc/**"/>
237 <exclude name="org/apache/commons/jcs/auxiliary/remote/**"/>
238 <exclude name="org/apache/commons/jcs/utils/servlet/**"/>
239 <exclude name="org/apache/commons/logging/impl/AvalonLogger.java"/>
240 <exclude name="org/apache/commons/logging/impl/Jdk13LumberjackLogger.java"/>
241 <exclude name="org/apache/commons/logging/impl/Log4JLogger.java"/>
242 <exclude name="org/apache/commons/logging/impl/LogKitLogger.java"/>
243 <exclude name="org/apache/commons/logging/impl/ServletContextCleaner.java"/>
244 </javac>
245 <!-- JMapViewer -->
246 <javac sourcepath="" srcdir="${src.dir}" excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java,org/openstreetmap/josm/**,JOSM.java,gnu/**"
247 destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
248 <compilerarg value="-Xlint:cast"/>
249 <compilerarg value="-Xlint:deprecation"/>
250 <compilerarg value="-Xlint:dep-ann"/>
251 <compilerarg value="-Xlint:divzero"/>
252 <compilerarg value="-Xlint:empty"/>
253 <compilerarg value="-Xlint:finally"/>
254 <compilerarg value="-Xlint:overrides"/>
255 <!--<compilerarg value="-Xlint:rawtypes"/>-->
256 <compilerarg value="-Xlint:static"/>
257 <compilerarg value="-Xlint:try"/>
258 <compilerarg value="-Xlint:unchecked"/>
259 <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
260 <compilerarg value="-XDignore.symbol.file"/>
261 </javac>
262 <!-- JOSM -->
263 <javac sourcepath="" srcdir="${src.dir}" excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java"
264 destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
265 <compilerarg value="-Xlint:cast"/>
266 <compilerarg value="-Xlint:deprecation"/>
267 <compilerarg value="-Xlint:dep-ann"/>
268 <compilerarg value="-Xlint:divzero"/>
269 <compilerarg value="-Xlint:empty"/>
270 <compilerarg value="-Xlint:finally"/>
271 <compilerarg value="-Xlint:overrides"/>
272 <!--<compilerarg value="-Xlint:rawtypes"/>-->
273 <compilerarg value="-Xlint:static"/>
274 <compilerarg value="-Xlint:try"/>
275 <compilerarg value="-Xlint:unchecked"/>
276 <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
277 <compilerarg value="-XDignore.symbol.file"/>
278 </javac>
279
280 <copy todir="build" failonerror="no" includeemptydirs="no">
281 <fileset dir="resources"/>
282 </copy>
283 </target>
284 <target name="init" depends="init-properties">
285 <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
286 <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
287 </uptodate>
288 <mkdir dir="${build.dir}"/>
289 <mkdir dir="${dist.dir}"/>
290 </target>
291 <target name="javadoc" depends="init-properties">
292 <javadoc destdir="javadoc"
293 sourcepath="${src.dir}"
294 encoding="UTF-8"
295 packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
296 excludepackagenames="org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.*"
297 windowtitle="JOSM"
298 use="true"
299 private="true"
300 linksource="true"
301 author="false">
302 <link href="http://docs.oracle.com/javase/7/docs/api"/>
303 <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
304 <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
305 </javadoc>
306 </target>
307 <target name="clean" depends="init-properties">
308 <delete dir="${build.dir}"/>
309 <delete dir="${proj-build.dir}"/>
310 <delete dir="${dist.dir}"/>
311 <delete dir="${mapcss.dir}/parsergen"/>
312 <delete file="${src.dir}/org/w3/_2001/xmlschema/Adapter1.java"/>
313 <delete dir="${src.dir}/org/openstreetmap/josm/data/imagery/types"/>
314 <delete file="${epsg.output}"/>
315 </target>
316 <macrodef name="init-test-preferences">
317 <attribute name="testfamily"/>
318 <sequential>
319 <copy file="${test.dir}/config/preferences.template.xml" tofile="${test.dir}/config/@{testfamily}-josm.home/preferences.xml"/>
320 <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_USERNAME@" value="${osm.username}"/>
321 <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_PASSWORD@" value="${osm.password}"/>
322 </sequential>
323 </macrodef>
324 <target name="test-init" depends="init-properties">
325 <mkdir dir="${test.dir}/build"/>
326 <mkdir dir="${test.dir}/build/unit"/>
327 <mkdir dir="${test.dir}/build/functional"/>
328 <mkdir dir="${test.dir}/build/performance"/>
329 <mkdir dir="${test.dir}/report"/>
330 <init-test-preferences testfamily="unit"/>
331 <init-test-preferences testfamily="functional"/>
332 <init-test-preferences testfamily="performance"/>
333 <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="tools/jacocoant.jar" />
334 </target>
335 <target name="test-clean" depends="init-properties">
336 <delete dir="${test.dir}/build"/>
337 <delete dir="${test.dir}/report"/>
338 <delete file="${test.dir}/jacoco.exec" />
339 <delete file="${test.dir}/jacocoIT.exec" />
340 <delete file="${test.dir}/config/unit-josm.home/preferences.xml" />
341 <delete file="${test.dir}/config/functional-josm.home/preferences.xml" />
342 <delete file="${test.dir}/config/performance-josm.home/preferences.xml" />
343 <delete dir="${test.dir}/config/unit-josm.home/cache" failonerror="false"/>
344 <delete dir="${test.dir}/config/functional-josm.home/cache" failonerror="false"/>
345 <delete dir="${test.dir}/config/performance-josm.home/cache" failonerror="false"/>
346 </target>
347 <macrodef name="call-groovyc">
348 <attribute name="testfamily"/>
349 <element name="cp-elements"/>
350 <sequential>
351 <groovyc srcdir="${test.dir}/@{testfamily}" destdir="${test.dir}/build/@{testfamily}" encoding="UTF-8">
352 <classpath>
353 <cp-elements/>
354 </classpath>
355 <javac target="1.7" source="1.7" debug="on" encoding="UTF-8">
356 <compilerarg value="-Xlint:all"/>
357 <compilerarg value="-Xlint:-serial"/>
358 </javac>
359 </groovyc>
360 </sequential>
361 </macrodef>
362 <target name="test-compile" depends="test-init,dist">
363 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpath="${groovy.jar}"/>
364 <call-groovyc testfamily="unit">
365 <cp-elements>
366 <path refid="test.classpath"/>
367 </cp-elements>
368 </call-groovyc>
369 <call-groovyc testfamily="functional">
370 <cp-elements>
371 <path refid="test.classpath"/>
372 <pathelement path="${test.dir}/build/unit"/>
373 </cp-elements>
374 </call-groovyc>
375 <call-groovyc testfamily="performance">
376 <cp-elements>
377 <path refid="test.classpath"/>
378 <pathelement path="${test.dir}/build/unit"/>
379 </cp-elements>
380 </call-groovyc>
381 </target>
382 <macrodef name="call-junit">
383 <attribute name="testfamily"/>
384 <attribute name="testITsuffix" default=""/>
385 <sequential>
386 <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
387 <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec">
388 <junit printsummary="yes" fork="true" forkmode="once">
389 <jvmarg value="-Dfile.encoding=UTF-8"/>
390 <jvmarg value="-XaddExports:java.base/sun.security.x509=ALL-UNNAMED" if:true="isJava9" />
391 <sysproperty key="josm.home" value="${test.dir}/config/@{testfamily}-josm.home"/>
392 <sysproperty key="josm.test.data" value="${test.dir}/data"/>
393 <sysproperty key="java.awt.headless" value="true"/>
394 <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
395 <classpath>
396 <path refid="test.classpath"/>
397 <pathelement path="${test.dir}/build/unit"/>
398 <pathelement path="${test.dir}/build/@{testfamily}"/>
399 <pathelement path="${test.dir}/config"/>
400 </classpath>
401 <formatter type="plain"/>
402 <formatter type="xml"/>
403 <batchtest fork="yes" todir="${test.dir}/report">
404 <fileset dir="${test.dir}/build/@{testfamily}" includes="**/*Test@{testITsuffix}.class"/>
405 </batchtest>
406 </junit>
407 </jacoco:coverage>
408 </sequential>
409 </macrodef>
410 <target name="test" depends="test-compile" unless="test.notRequired"
411 description="Run unit, functional and performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
412 <call-junit testfamily="unit"/>
413 <call-junit testfamily="functional"/>
414 <call-junit testfamily="performance"/>
415 </target>
416 <target name="test-it" depends="test-compile" unless="test-it.notRequired"
417 description="Run integration tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
418 <call-junit testfamily="unit" testITsuffix="IT"/>
419 <call-junit testfamily="functional" testITsuffix="IT"/>
420 <call-junit testfamily="performance" testITsuffix="IT"/>
421 </target>
422 <target name="test-html" depends="test, test-it" description="Generate HTML test reports">
423 <!-- May require additional ant dependencies like ant-trax package -->
424 <junitreport todir="${test.dir}/report">
425 <fileset dir="${test.dir}/report">
426 <include name="TEST-*.xml"/>
427 </fileset>
428 <report todir="${test.dir}/report/html"/>
429 </junitreport>
430 <jacoco:report>
431 <executiondata>
432 <file file="${test.dir}/jacoco.exec"/>
433 <file file="${test.dir}/jacocoIT.exec"/>
434 </executiondata>
435 <structure name="JOSM Test Coverage">
436 <classfiles>
437 <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
438 </classfiles>
439 <sourcefiles encoding="UTF-8">
440 <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
441 </sourcefiles>
442 </structure>
443 <html destdir="${test.dir}/report/jacoco"/>
444 </jacoco:report>
445 </target>
446 <!-- Proguard does not support Java 9 : http://sourceforge.net/p/proguard/bugs/551/ -->
447 <target name="dist-optimized" depends="dist" unless="isJava9">
448 <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard.jar"/>
449 <proguard>
450 -injars dist/josm-custom.jar
451 -outjars dist/josm-custom-optimized.jar
452
453 -libraryjars ${java.home}/lib/rt.jar
454 -libraryjars ${java.home}/lib/jce.jar
455
456 -dontoptimize
457 -dontobfuscate
458
459 # These options probably are not necessary (and make processing a bit slower)
460 -dontskipnonpubliclibraryclasses
461 -dontskipnonpubliclibraryclassmembers
462
463 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
464 public static void main(java.lang.String[]);
465 }
466
467 -keep class JOSM
468 -keep class * extends org.openstreetmap.josm.io.FileImporter
469 -keep class * extends org.openstreetmap.josm.io.FileExporter
470 -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
471 -keep class org.openstreetmap.josm.gui.mappaint.mapcss.Condition$PseudoClasses {
472 static boolean *(org.openstreetmap.josm.gui.mappaint.Environment);
473 }
474 -keep class org.apache.commons.logging.impl.*
475
476 -keepclassmembers enum * {
477 public static **[] values();
478 public static ** valueOf(java.lang.String);
479 }
480
481 # Keep unused public methods (can be useful for plugins)
482 -keepclassmembers class * {
483 public protected *;
484 }
485
486 # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'.
487 # This note should not be a problem as we don't use obfuscation
488 -dontnote
489 </proguard>
490 </target>
491 <target name="check-plugins" depends="dist-optimized">
492 <echo message="Check of plugins binary compatibility (needs ant 1.8)"/>
493 <local name="dir"/>
494 <local name="plugins"/>
495 <property name="dir" value="plugin-check"/>
496 <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
497 <classpath path="tools/animal-sniffer-ant-tasks-1.14.jar"/>
498 </typedef>
499 <mkdir dir="${dir}"/>
500 <!-- List of deprecated plugins -->
501 <loadfile property="deprecated-plugins" srcFile="${src.dir}/org/openstreetmap/josm/plugins/PluginHandler.java">
502 <filterchain>
503 <linecontains>
504 <contains value="new DeprecatedPlugin("/>
505 </linecontains>
506 <tokenfilter>
507 <replaceregex pattern=".*new DeprecatedPlugin\(&quot;(.+?)&quot;.*" replace="\1|" flags="gi"/>
508 </tokenfilter>
509 <striplinebreaks/>
510 <tokenfilter>
511 <replaceregex pattern="\|$" replace="" flags="gi"/>
512 </tokenfilter>
513 </filterchain>
514 </loadfile>
515 <!-- Download list of plugins -->
516 <loadresource property="plugins">
517 <url url="https://josm.openstreetmap.de/plugin"/>
518 <filterchain>
519 <linecontainsregexp negate="true">
520 <regexp pattern="^\t.*"/>
521 </linecontainsregexp>
522 <linecontainsregexp negate="true">
523 <regexp pattern="${deprecated-plugins}"/>
524 </linecontainsregexp>
525 <tokenfilter>
526 <replaceregex pattern="^.*;" replace="" flags="gi"/>
527 </tokenfilter>
528 </filterchain>
529 </loadresource>
530 <!-- Delete files that are not in plugin list (like old plugins) -->
531 <loadresource property="file-list">
532 <propertyresource name="plugins"/>
533 <filterchain>
534 <tokenfilter>
535 <replaceregex pattern="^.*/(.*)$" replace="\1\|" flags=""/>
536 </tokenfilter>
537 <striplinebreaks/>
538 <tokenfilter>
539 <replaceregex pattern="\|$" replace="" flags="gi"/>
540 </tokenfilter>
541 </filterchain>
542 </loadresource>
543 <delete>
544 <restrict>
545 <fileset dir="${dir}"/>
546 <not>
547 <name regex="${file-list}"/>
548 </not>
549 </restrict>
550 </delete>
551 <!-- Download plugins -->
552 <copy todir="${dir}" flatten="true">
553 <resourcelist>
554 <string value="${plugins}"/>
555 </resourcelist>
556 </copy>
557 <!-- Check plugins -->
558 <as:build-signatures destfile="${dir}/api.sig">
559 <path>
560 <fileset file="${dist.dir}/josm-custom-optimized.jar"/>
561 <fileset file="${java.home}/lib/rt.jar"/>
562 <fileset file="${java.home}/lib/jce.jar"/>
563 </path>
564 </as:build-signatures>
565 <as:check-signature signature="${dir}/api.sig">
566 <ignore classname="au.edu.*"/>
567 <ignore classname="au.com.*"/>
568 <ignore classname="com.*"/>
569 <ignore classname="de.miethxml.*"/>
570 <ignore classname="javafx.*"/>
571 <ignore classname="javax.*"/>
572 <ignore classname="jogamp.*"/>
573 <ignore classname="junit.*"/>
574 <ignore classname="net.sf.*"/>
575 <ignore classname="nu.xom.*"/>
576 <ignore classname="org.apache.*"/>
577 <ignore classname="org.codehaus.*"/>
578 <ignore classname="org.dom4j.*"/>
579 <ignore classname="org.hsqldb.*"/>
580 <ignore classname="org.ibex.*"/>
581 <ignore classname="org.iso_relax.*"/>
582 <ignore classname="org.jaitools.*"/>
583 <ignore classname="org.jaxen.*"/>
584 <ignore classname="org.jdom2.*"/>
585 <ignore classname="org.jgraph.*"/>
586 <ignore classname="org.joda.time.*"/>
587 <ignore classname="org.jvnet.staxex.*"/>
588 <ignore classname="org.kxml2.*"/>
589 <ignore classname="org.objectweb.*"/>
590 <ignore classname="org.python.*"/>
591 <ignore classname="org.slf4j.*"/>
592 <!-- plugins used by another ones -->
593 <ignore classname="org.openstreetmap.josm.plugins.geotools.*"/>
594 <ignore classname="org.openstreetmap.josm.plugins.jna.*"/>
595 <ignore classname="org.openstreetmap.josm.plugins.jts.*"/>
596 <ignore classname="org.openstreetmap.josm.plugins.log4j.*"/>
597 <ignore classname="org.openstreetmap.josm.plugins.utilsplugin2.*"/>
598 <path path="${dir}"/>
599 </as:check-signature>
600 </target>
601
602 <macrodef name="_taginfo">
603 <attribute name="type"/>
604 <attribute name="output"/>
605 <sequential>
606 <echo message="Generating Taginfo for type @{type} to @{output}"/>
607 <groovy src="${taginfoextract}" classpath="${dist.dir}/josm-custom.jar">
608 <arg value="-t"/>
609 <arg value="@{type}"/>
610 <arg value="--noexit"/>
611 <arg value="--svnweb"/>
612 <arg value="--imgurlprefix"/>
613 <arg value="${imgurlprefix}"/>
614 <arg value="-o"/>
615 <arg value="@{output}"/>
616 </groovy>
617 </sequential>
618 </macrodef>
619
620 <target name="taginfo" depends="dist">
621 <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${groovy.jar};tools/commons-cli-1.3.1.jar"/>
622 <property name="taginfoextract" value="scripts/TagInfoExtract.groovy"/>
623 <property name="imgurlprefix" value="http://josm.openstreetmap.de/download/taginfo/taginfo-img"/>
624 <_taginfo type="mappaint" output="taginfo_style.json"/>
625 <_taginfo type="presets" output="taginfo_presets.json"/>
626 <_taginfo type="external_presets" output="taginfo_external_presets.json"/>
627 </target>
628
629 <target name="imageryindex" depends="init-properties">
630 <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${groovy.jar};tools/commons-cli-1.3.1.jar"/>
631 <echo message="Checking editor imagery difference"/>
632 <groovy src="scripts/SyncEditorImageryIndex.groovy" classpath="${dist.dir}/josm-custom.jar">
633 <arg value="-nomissingeii"/>
634 </groovy>
635 </target>
636
637 <target name="imageryindexdownload">
638 <exec append="false" executable="wget" failifexecutionfails="true">
639 <arg value="https://josm.openstreetmap.de/maps"/>
640 <arg value="-O"/>
641 <arg value="maps.xml"/>
642 <arg value="--unlink"/>
643 </exec>
644 <exec append="false" executable="wget" failifexecutionfails="true">
645 <arg value="https://raw.githubusercontent.com/osmlab/editor-imagery-index/gh-pages/imagery.json"/>
646 <arg value="-O"/>
647 <arg value="imagery.json"/>
648 <arg value="--unlink"/>
649 </exec>
650 <antcall target="imageryindex"/>
651 </target>
652
653 <target name="checkstyle" depends="init-properties">
654 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
655 classpath="tools/checkstyle/checkstyle-6.17-all.jar"/>
656 <checkstyle config="tools/checkstyle/josm_checks.xml">
657 <fileset dir="${base.dir}/src/org/openstreetmap/josm" includes="**/*.java"
658 excludes="gui/mappaint/mapcss/parsergen/*.java"/>
659 <fileset dir="${base.dir}/test" includes="**/*.java"/>
660 <formatter type="xml" toFile="checkstyle-josm.xml"/>
661 </checkstyle>
662 </target>
663
664 <target name="findbugs" depends="dist">
665 <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>
666 <path id="findbugs-classpath">
667 <fileset dir="${base.dir}/tools/findbugs/">
668 <include name="*.jar"/>
669 </fileset>
670 </path>
671 <property name="findbugs-classpath" refid="findbugs-classpath"/>
672 <findbugs output="xml"
673 outputFile="findbugs-josm.xml"
674 classpath="${findbugs-classpath}"
675 pluginList=""
676 excludeFilter="tools/findbugs/josm-filter.xml"
677 effort="max"
678 >
679 <sourcePath path="${base.dir}/src" />
680 <class location="${dist.dir}/josm-custom.jar" />
681 </findbugs>
682 </target>
683 <target name="run" depends="dist">
684 <java jar="${dist.dir}/josm-custom.jar" fork="true">
685 <arg value="--set=expert=true"/>
686 <arg value="--set=remotecontrol.enabled=true"/>
687 <arg value="--set=debug.edt-checker.enable=false"/>
688 <jvmarg value="-Djosm.home=/tmp/.josm/"/>
689 </java>
690 </target>
691 <!--
692 ** Compile build script for generating projection list.
693 -->
694 <target name="epsg-compile">
695 <property name="proj-classpath" location="${build.dir}"/>
696 <mkdir dir="${proj-build.dir}"/>
697 <javac sourcepath="" srcdir="${base.dir}/scripts" failonerror="true"
698 destdir="${proj-build.dir}" target="1.7" source="1.7" debug="on"
699 includeantruntime="false" createMissingPackageInfoClass="false"
700 encoding="UTF-8" classpath="${proj-classpath}">
701 </javac>
702 </target>
703 <!--
704 ** generate projection list.
705 -->
706 <target name="epsg" depends="epsg-compile">
707 <touch file="${epsg.output}"/>
708 <java classname="BuildProjectionDefinitions" failonerror="true">
709 <sysproperty key="java.awt.headless" value="true"/>
710 <classpath>
711 <pathelement path="${base.dir}"/>
712 <pathelement path="${proj-classpath}"/>
713 <pathelement path="${proj-build.dir}"/>
714 </classpath>
715 <arg value="${base.dir}"/>
716 </java>
717 </target>
718</project>
Note: See TracBrowser for help on using the repository browser.