source: josm/trunk/build.xml@ 10973

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

fix #13232 - fix proguard configuration with serialization methods

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