source: josm/trunk/build.xml@ 11472

Last change on this file since 11472 was 11471, checked in by Don-vip, 7 years ago

update build to ignore latest apache commons compressor

  • Property svn:eol-style set to native
File size: 39.4 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.14.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/CompressorStreamProvider.java"/>
233 <exclude name="org/apache/commons/compress/compressors/CompressorException.java"/>
234 <exclude name="org/apache/commons/compress/compressors/FileNameUtil.java"/>
235 <exclude name="org/apache/commons/compress/compressors/deflate/**"/>
236 <exclude name="org/apache/commons/compress/compressors/gzip/**"/>
237 <exclude name="org/apache/commons/compress/compressors/lz4/**"/>
238 <exclude name="org/apache/commons/compress/compressors/lzw/**"/>
239 <exclude name="org/apache/commons/compress/compressors/pack200/**"/>
240 <exclude name="org/apache/commons/compress/compressors/snappy/**"/>
241 <exclude name="org/apache/commons/compress/compressors/z/**"/>
242 <exclude name="org/apache/commons/jcs/JCS.java"/>
243 <exclude name="org/apache/commons/jcs/access/GroupCacheAccess.java"/>
244 <exclude name="org/apache/commons/jcs/access/PartitionedCacheAccess.java"/>
245 <exclude name="org/apache/commons/jcs/access/behavior/IGroupCacheAccess.java"/>
246 <exclude name="org/apache/commons/jcs/access/exception/InvalidGroupException.java"/>
247 <exclude name="org/apache/commons/jcs/admin/servlet/**"/>
248 <exclude name="org/apache/commons/jcs/auxiliary/AbstractAuxiliaryCacheMonitor.java"/>
249 <exclude name="org/apache/commons/jcs/auxiliary/disk/jdbc/**"/>
250 <exclude name="org/apache/commons/jcs/auxiliary/lateral/**"/>
251 <exclude name="org/apache/commons/jcs/auxiliary/remote/**"/>
252 <exclude name="org/apache/commons/jcs/engine/CacheAdaptor.java"/>
253 <exclude name="org/apache/commons/jcs/engine/CacheGroup.java"/>
254 <exclude name="org/apache/commons/jcs/engine/CacheWatchRepairable.java"/>
255 <exclude name="org/apache/commons/jcs/engine/Zombie*.java"/>
256 <exclude name="org/apache/commons/jcs/engine/logging/CacheEventLoggerDebugLogger.java"/>
257 <exclude name="org/apache/commons/jcs/utils/access/**"/>
258 <exclude name="org/apache/commons/jcs/utils/discovery/**"/>
259 <exclude name="org/apache/commons/jcs/utils/net/**"/>
260 <exclude name="org/apache/commons/jcs/utils/props/**"/>
261 <exclude name="org/apache/commons/jcs/utils/servlet/**"/>
262 <exclude name="org/apache/commons/logging/impl/AvalonLogger.java"/>
263 <exclude name="org/apache/commons/logging/impl/Jdk13LumberjackLogger.java"/>
264 <exclude name="org/apache/commons/logging/impl/Log4JLogger.java"/>
265 <exclude name="org/apache/commons/logging/impl/LogKitLogger.java"/>
266 <exclude name="org/apache/commons/logging/impl/ServletContextCleaner.java"/>
267 </javac>
268 <!-- JMapViewer -->
269 <javac compiler="${javac.compiler}" sourcepath="" srcdir="${src.dir}"
270 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/**"
271 destdir="build" target="1.8" source="1.8" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
272 <compilerclasspath>
273 <pathelement location="${error_prone_ant.jar}"/>
274 </compilerclasspath>
275 <compilerarg value="-Xlint:cast"/>
276 <compilerarg value="-Xlint:deprecation"/>
277 <compilerarg value="-Xlint:dep-ann"/>
278 <compilerarg value="-Xlint:divzero"/>
279 <compilerarg value="-Xlint:empty"/>
280 <compilerarg value="-Xlint:finally"/>
281 <compilerarg value="-Xlint:overrides"/>
282 <!--<compilerarg value="-Xlint:rawtypes"/>-->
283 <compilerarg value="-Xlint:static"/>
284 <compilerarg value="-Xlint:try"/>
285 <compilerarg value="-Xlint:unchecked"/>
286 <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
287 <compilerarg value="-XDignore.symbol.file"/>
288 <compilerarg value="-Xep:ReferenceEquality:OFF" compiler="com.google.errorprone.ErrorProneAntCompilerAdapter"/>
289 <compilerarg line="-Xmaxwarns 1000"/>
290 </javac>
291 <!-- JOSM -->
292 <javac compiler="${javac.compiler}" sourcepath="" srcdir="${src.dir}"
293 excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/**"
294 destdir="build" target="1.8" source="1.8" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
295 <compilerclasspath>
296 <pathelement location="${error_prone_ant.jar}"/>
297 </compilerclasspath>
298 <compilerarg value="-Xlint:cast"/>
299 <compilerarg value="-Xlint:deprecation"/>
300 <compilerarg value="-Xlint:dep-ann"/>
301 <compilerarg value="-Xlint:divzero"/>
302 <compilerarg value="-Xlint:empty"/>
303 <compilerarg value="-Xlint:finally"/>
304 <compilerarg value="-Xlint:overrides"/>
305 <!--<compilerarg value="-Xlint:rawtypes"/>-->
306 <compilerarg value="-Xlint:static"/>
307 <compilerarg value="-Xlint:try"/>
308 <compilerarg value="-Xlint:unchecked"/>
309 <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
310 <compilerarg value="-XDignore.symbol.file"/>
311 <compilerarg value="-Xep:ReferenceEquality:OFF" compiler="com.google.errorprone.ErrorProneAntCompilerAdapter"/>
312 <compilerarg line="-Xmaxwarns 1000"/>
313 </javac>
314
315 <copy todir="build" failonerror="no" includeemptydirs="no">
316 <fileset dir="resources"/>
317 </copy>
318 </target>
319 <target name="init" depends="init-properties">
320 <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
321 <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
322 </uptodate>
323 <mkdir dir="${build.dir}"/>
324 <mkdir dir="${dist.dir}"/>
325 </target>
326 <target name="javadoc" depends="init-properties">
327 <javadoc destdir="javadoc"
328 sourcepath="${src.dir}"
329 encoding="UTF-8"
330 packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
331 excludepackagenames="org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.*"
332 windowtitle="JOSM"
333 use="true"
334 private="true"
335 linksource="true"
336 author="false">
337 <link href="http://docs.oracle.com/javase/8/docs/api"/>
338 <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
339 <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
340 </javadoc>
341 </target>
342 <target name="clean" depends="init-properties">
343 <delete dir="${build.dir}"/>
344 <delete dir="${proj-build.dir}"/>
345 <delete dir="${dist.dir}"/>
346 <delete dir="${mapcss.dir}/parsergen"/>
347 <delete file="${src.dir}/org/w3/_2001/xmlschema/Adapter1.java"/>
348 <delete dir="${src.dir}/org/openstreetmap/josm/data/imagery/types"/>
349 <delete file="${epsg.output}"/>
350 </target>
351 <macrodef name="init-test-preferences">
352 <attribute name="testfamily"/>
353 <sequential>
354 <copy file="${test.dir}/config/preferences.template.xml" tofile="${test.dir}/config/@{testfamily}-josm.home/preferences.xml"/>
355 <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_USERNAME@" value="${osm.username}"/>
356 <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_PASSWORD@" value="${osm.password}"/>
357 </sequential>
358 </macrodef>
359 <target name="test-init" depends="init-properties">
360 <mkdir dir="${test.dir}/build"/>
361 <mkdir dir="${test.dir}/build/unit"/>
362 <mkdir dir="${test.dir}/build/functional"/>
363 <mkdir dir="${test.dir}/build/performance"/>
364 <mkdir dir="${test.dir}/report"/>
365 <init-test-preferences testfamily="unit"/>
366 <init-test-preferences testfamily="functional"/>
367 <init-test-preferences testfamily="performance"/>
368 <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="tools/jacocoant.jar" />
369 </target>
370 <target name="test-clean" depends="init-properties">
371 <delete dir="${test.dir}/build"/>
372 <delete dir="${test.dir}/report"/>
373 <delete file="${test.dir}/jacoco.exec" />
374 <delete file="${test.dir}/jacocoIT.exec" />
375 <delete file="${test.dir}/config/unit-josm.home" failonerror="false"/>
376 <delete file="${test.dir}/config/functional-josm.home" failonerror="false"/>
377 <delete file="${test.dir}/config/performance-josm.home" failonerror="false"/>
378 </target>
379 <macrodef name="call-groovyc">
380 <attribute name="testfamily"/>
381 <element name="cp-elements"/>
382 <sequential>
383 <groovyc srcdir="${test.dir}/@{testfamily}" destdir="${test.dir}/build/@{testfamily}" encoding="UTF-8">
384 <classpath>
385 <cp-elements/>
386 </classpath>
387 <javac target="1.8" source="1.8" debug="on" encoding="UTF-8">
388 <compilerarg value="-Xlint:all"/>
389 <compilerarg value="-Xlint:-serial"/>
390 </javac>
391 </groovyc>
392 </sequential>
393 </macrodef>
394 <target name="test-compile" depends="test-init,dist">
395 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpath="${groovy.jar}"/>
396 <call-groovyc testfamily="unit">
397 <cp-elements>
398 <path refid="test.classpath"/>
399 </cp-elements>
400 </call-groovyc>
401 <call-groovyc testfamily="functional">
402 <cp-elements>
403 <path refid="test.classpath"/>
404 <pathelement path="${test.dir}/build/unit"/>
405 </cp-elements>
406 </call-groovyc>
407 <call-groovyc testfamily="performance">
408 <cp-elements>
409 <path refid="test.classpath"/>
410 <pathelement path="${test.dir}/build/unit"/>
411 </cp-elements>
412 </call-groovyc>
413 </target>
414 <macrodef name="call-junit">
415 <attribute name="testfamily"/>
416 <attribute name="testITsuffix" default=""/>
417 <attribute name="coverage" default="true"/>
418 <sequential>
419 <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
420 <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}" excludes="jdk.dynalink.*:jdk.nashorn.*">
421 <junit printsummary="yes" fork="true" forkmode="once">
422 <jvmarg value="-Dfile.encoding=UTF-8"/>
423 <jvmarg value="--add-exports" if:set="isJava9" />
424 <jvmarg value="java.base/sun.security.util=ALL-UNNAMED" if:set="isJava9" />
425 <jvmarg value="--add-exports" if:set="isJava9" />
426 <jvmarg value="java.base/sun.security.x509=ALL-UNNAMED" if:set="isJava9" />
427 <sysproperty key="josm.home" value="${test.dir}/config/@{testfamily}-josm.home"/>
428 <sysproperty key="josm.test.data" value="${test.dir}/data"/>
429 <sysproperty key="java.awt.headless" value="true"/>
430 <sysproperty key="glass.platform" value="Monocle"/>
431 <sysproperty key="monocle.platform" value="Headless"/>
432 <sysproperty key="prism.order" value="sw"/>
433 <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
434 <classpath>
435 <path refid="test.classpath"/>
436 <pathelement path="${test.dir}/build/unit"/>
437 <pathelement path="${test.dir}/build/@{testfamily}"/>
438 <pathelement path="${test.dir}/config"/>
439 </classpath>
440 <formatter type="plain"/>
441 <formatter type="xml"/>
442 <batchtest fork="yes" todir="${test.dir}/report">
443 <fileset dir="${test.dir}/build/@{testfamily}" includes="**/*Test@{testITsuffix}.class"/>
444 </batchtest>
445 </junit>
446 </jacoco:coverage>
447 </sequential>
448 </macrodef>
449 <target name="test" depends="test-compile" unless="test.notRequired"
450 description="Run unit, functional and performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
451 <call-junit testfamily="unit"/>
452 <call-junit testfamily="functional"/>
453 <call-junit testfamily="performance" coverage="false"/>
454 </target>
455 <target name="test-it" depends="test-compile" unless="test-it.notRequired"
456 description="Run integration tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
457 <call-junit testfamily="unit" testITsuffix="IT"/>
458 <call-junit testfamily="functional" testITsuffix="IT"/>
459 <call-junit testfamily="performance" testITsuffix="IT" coverage="false"/>
460 </target>
461 <target name="test-html" depends="test, test-it" description="Generate HTML test reports">
462 <!-- May require additional ant dependencies like ant-trax package -->
463 <junitreport todir="${test.dir}/report">
464 <fileset dir="${test.dir}/report">
465 <include name="TEST-*.xml"/>
466 </fileset>
467 <report todir="${test.dir}/report/html"/>
468 </junitreport>
469 <jacoco:report>
470 <executiondata>
471 <file file="${test.dir}/jacoco.exec"/>
472 <file file="${test.dir}/jacocoIT.exec"/>
473 </executiondata>
474 <structure name="JOSM Test Coverage">
475 <classfiles>
476 <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
477 </classfiles>
478 <sourcefiles encoding="UTF-8">
479 <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
480 </sourcefiles>
481 </structure>
482 <html destdir="${test.dir}/report/jacoco"/>
483 </jacoco:report>
484 </target>
485 <!-- Proguard does not support Java 9 : http://sourceforge.net/p/proguard/bugs/551/ -->
486 <target name="dist-optimized" depends="dist" unless="isJava9">
487 <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard.jar"/>
488 <proguard>
489 -injars dist/josm-custom.jar
490 -outjars dist/josm-custom-optimized.jar
491
492 -libraryjars ${java.home}/lib/rt.jar
493 -libraryjars ${java.home}/lib/jce.jar
494
495 -dontoptimize
496 -dontobfuscate
497
498 # These options probably are not necessary (and make processing a bit slower)
499 -dontskipnonpubliclibraryclasses
500 -dontskipnonpubliclibraryclassmembers
501
502 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
503 public static void main(java.lang.String[]);
504 }
505
506 -keep class JOSM
507 -keep class * extends org.openstreetmap.josm.io.FileImporter
508 -keep class * extends org.openstreetmap.josm.io.FileExporter
509 -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
510 -keep class org.openstreetmap.josm.gui.mappaint.mapcss.ConditionFactory$PseudoClasses {
511 static boolean *(org.openstreetmap.josm.gui.mappaint.Environment);
512 }
513 -keep class org.apache.commons.logging.impl.*
514
515 -keepclassmembers enum * {
516 public static **[] values();
517 public static ** valueOf(java.lang.String);
518 }
519
520 # Keep unused public methods (can be useful for plugins)
521 -keepclassmembers class * {
522 public protected *;
523 }
524
525 # Keep serialization methods
526 -keepclassmembers class * implements java.io.Serializable {
527 private void writeObject(java.io.ObjectOutputStream);
528 private void readObject(java.io.ObjectInputStream);
529 }
530
531 # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'.
532 # This note should not be a problem as we don't use obfuscation
533 -dontnote
534 </proguard>
535 </target>
536 <!-- Proguard does not support Java 9 : http://sourceforge.net/p/proguard/bugs/551/ -->
537 <target name="dist-optimized-report" depends="dist-optimized" unless="isJava9">
538 <!-- generate difference report between optimized jar and normal one -->
539 <exec executable="perl" dir="${basedir}">
540 <arg value="tools/japicc/japi-compliance-checker.pl"/>
541 <arg value="--lib=JOSM"/>
542 <arg value="--keep-internal"/>
543 <arg value="--v1=${version.entry.commit.revision}"/>
544 <arg value="--v2=${version.entry.commit.revision}-optimized"/>
545 <arg value="--report-path=${dist.dir}/compat_report.html"/>
546 <arg value="${dist.dir}/josm-custom.jar"/>
547 <arg value="${dist.dir}/josm-custom-optimized.jar"/>
548 </exec>
549 </target>
550 <target name="check-plugins" depends="dist-optimized">
551 <echo message="Check of plugins binary compatibility (needs ant 1.8)"/>
552 <local name="dir"/>
553 <local name="plugins"/>
554 <property name="dir" value="plugin-check"/>
555 <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
556 <classpath path="tools/animal-sniffer-ant-tasks-1.15.jar"/>
557 </typedef>
558 <mkdir dir="${dir}"/>
559 <!-- List of deprecated plugins -->
560 <loadfile property="deprecated-plugins" srcFile="${src.dir}/org/openstreetmap/josm/plugins/PluginHandler.java">
561 <filterchain>
562 <linecontains>
563 <contains value="new DeprecatedPlugin("/>
564 </linecontains>
565 <tokenfilter>
566 <replaceregex pattern=".*new DeprecatedPlugin\(&quot;(.+?)&quot;.*" replace="\1|" flags="gi"/>
567 </tokenfilter>
568 <striplinebreaks/>
569 <tokenfilter>
570 <replaceregex pattern="\|$" replace="" flags="gi"/>
571 </tokenfilter>
572 </filterchain>
573 </loadfile>
574 <!-- Download list of plugins -->
575 <loadresource property="plugins">
576 <url url="https://josm.openstreetmap.de/plugin"/>
577 <filterchain>
578 <linecontainsregexp negate="true">
579 <regexp pattern="^\t.*"/>
580 </linecontainsregexp>
581 <linecontainsregexp negate="true">
582 <regexp pattern="${deprecated-plugins}"/>
583 </linecontainsregexp>
584 <tokenfilter>
585 <replaceregex pattern="^.*;" replace="" flags="gi"/>
586 </tokenfilter>
587 </filterchain>
588 </loadresource>
589 <!-- Delete files that are not in plugin list (like old plugins) -->
590 <loadresource property="file-list">
591 <propertyresource name="plugins"/>
592 <filterchain>
593 <tokenfilter>
594 <replaceregex pattern="^.*/(.*)$" replace="\1\|" flags=""/>
595 </tokenfilter>
596 <striplinebreaks/>
597 <tokenfilter>
598 <replaceregex pattern="\|$" replace="" flags="gi"/>
599 </tokenfilter>
600 </filterchain>
601 </loadresource>
602 <delete>
603 <restrict>
604 <fileset dir="${dir}"/>
605 <not>
606 <name regex="${file-list}"/>
607 </not>
608 </restrict>
609 </delete>
610 <!-- Download plugins -->
611 <copy todir="${dir}" flatten="true">
612 <resourcelist>
613 <string value="${plugins}"/>
614 </resourcelist>
615 </copy>
616 <!-- Check plugins -->
617 <as:build-signatures destfile="${dir}/api.sig">
618 <path>
619 <fileset file="${dist.dir}/josm-custom-optimized.jar"/>
620 <fileset file="${java.home}/lib/rt.jar"/>
621 <fileset file="${java.home}/lib/jce.jar"/>
622 </path>
623 </as:build-signatures>
624 <as:check-signature signature="${dir}/api.sig">
625 <ignore classname="au.edu.*"/>
626 <ignore classname="au.com.*"/>
627 <ignore classname="com.*"/>
628 <ignore classname="de.miethxml.*"/>
629 <ignore classname="javafx.*"/>
630 <ignore classname="javax.*"/>
631 <ignore classname="jogamp.*"/>
632 <ignore classname="junit.*"/>
633 <ignore classname="net.sf.*"/>
634 <ignore classname="nu.xom.*"/>
635 <ignore classname="org.apache.*"/>
636 <ignore classname="org.codehaus.*"/>
637 <ignore classname="org.dom4j.*"/>
638 <ignore classname="org.hsqldb.*"/>
639 <ignore classname="org.ibex.*"/>
640 <ignore classname="org.iso_relax.*"/>
641 <ignore classname="org.jaitools.*"/>
642 <ignore classname="org.jaxen.*"/>
643 <ignore classname="org.jdom2.*"/>
644 <ignore classname="org.jgraph.*"/>
645 <ignore classname="org.joda.time.*"/>
646 <ignore classname="org.jvnet.staxex.*"/>
647 <ignore classname="org.kxml2.*"/>
648 <ignore classname="org.objectweb.*"/>
649 <ignore classname="org.python.*"/>
650 <ignore classname="org.slf4j.*"/>
651 <!-- plugins used by another ones -->
652 <ignore classname="org.openstreetmap.josm.plugins.geotools.*"/>
653 <ignore classname="org.openstreetmap.josm.plugins.jna.*"/>
654 <ignore classname="org.openstreetmap.josm.plugins.jts.*"/>
655 <ignore classname="org.openstreetmap.josm.plugins.log4j.*"/>
656 <ignore classname="org.openstreetmap.josm.plugins.utilsplugin2.*"/>
657 <path path="${dir}"/>
658 </as:check-signature>
659 </target>
660
661 <macrodef name="_taginfo">
662 <attribute name="type"/>
663 <attribute name="output"/>
664 <sequential>
665 <echo message="Generating Taginfo for type @{type} to @{output}"/>
666 <groovy src="${taginfoextract}" classpath="${dist.dir}/josm-custom.jar:tools/findbugs/annotations.jar">
667 <arg value="-t"/>
668 <arg value="@{type}"/>
669 <arg value="--noexit"/>
670 <arg value="--svnweb"/>
671 <arg value="--imgurlprefix"/>
672 <arg value="${imgurlprefix}"/>
673 <arg value="-o"/>
674 <arg value="@{output}"/>
675 </groovy>
676 </sequential>
677 </macrodef>
678
679 <target name="taginfo" depends="dist">
680 <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${groovy.jar};tools/commons-cli-1.3.1.jar"/>
681 <property name="taginfoextract" value="scripts/TagInfoExtract.groovy"/>
682 <property name="imgurlprefix" value="http://josm.openstreetmap.de/download/taginfo/taginfo-img"/>
683 <_taginfo type="mappaint" output="taginfo_style.json"/>
684 <_taginfo type="presets" output="taginfo_presets.json"/>
685 <_taginfo type="external_presets" output="taginfo_external_presets.json"/>
686 </target>
687
688 <target name="imageryindex" depends="init-properties">
689 <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${groovy.jar};tools/commons-cli-1.3.1.jar"/>
690 <echo message="Checking editor imagery difference"/>
691 <groovy src="scripts/SyncEditorImageryIndex.groovy" classpath="${dist.dir}/josm-custom.jar">
692 <!--<arg value="-nomissingeii"/>-->
693 </groovy>
694 </target>
695
696 <target name="imageryindexdownload">
697 <exec append="false" executable="wget" failifexecutionfails="true">
698 <arg value="https://josm.openstreetmap.de/maps"/>
699 <arg value="-O"/>
700 <arg value="maps.xml"/>
701 <arg value="--unlink"/>
702 </exec>
703 <exec append="false" executable="wget" failifexecutionfails="true">
704 <arg value="https://josm.openstreetmap.de/wiki/ImageryCompareIgnores?format=txt"/>
705 <arg value="-O"/>
706 <arg value="maps_ignores.txt"/>
707 <arg value="--unlink"/>
708 </exec>
709 <exec append="false" executable="wget" failifexecutionfails="true">
710 <arg value="https://raw.githubusercontent.com/osmlab/editor-imagery-index/gh-pages/imagery.geojson"/>
711 <arg value="-O"/>
712 <arg value="imagery.geojson"/>
713 <arg value="--unlink"/>
714 </exec>
715 <antcall target="imageryindex"/>
716 </target>
717
718 <target name="checkstyle" depends="init-properties">
719 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
720 classpath="tools/checkstyle/checkstyle-7.4-all.jar"/>
721 <checkstyle config="tools/checkstyle/josm_checks.xml">
722 <fileset dir="${base.dir}/src/org/openstreetmap/josm" includes="**/*.java"
723 excludes="gui/mappaint/mapcss/parsergen/*.java"/>
724 <fileset dir="${base.dir}/test" includes="**/*.java"/>
725 <formatter type="xml" toFile="checkstyle-josm.xml"/>
726 </checkstyle>
727 </target>
728
729 <target name="findbugs" depends="dist">
730 <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>
731 <path id="findbugs-classpath">
732 <fileset dir="${base.dir}/tools/findbugs/">
733 <include name="*.jar"/>
734 </fileset>
735 </path>
736 <property name="findbugs-classpath" refid="findbugs-classpath"/>
737 <findbugs output="xml"
738 outputFile="findbugs-josm.xml"
739 classpath="${findbugs-classpath}"
740 pluginList=""
741 excludeFilter="tools/findbugs/josm-filter.xml"
742 effort="max"
743 reportLevel="low"
744 >
745 <sourcePath path="${base.dir}/src" />
746 <class location="${dist.dir}/josm-custom.jar" />
747 </findbugs>
748 </target>
749 <target name="run" depends="dist">
750 <java jar="${dist.dir}/josm-custom.jar" fork="true">
751 <arg value="--set=expert=true"/>
752 <arg value="--set=remotecontrol.enabled=true"/>
753 <arg value="--set=debug.edt-checker.enable=false"/>
754 <jvmarg value="-Djosm.home=/tmp/.josm/"/>
755 </java>
756 </target>
757 <!--
758 ** Compile build script for generating projection list.
759 -->
760 <target name="epsg-compile" depends="init-properties">
761 <property name="proj-classpath" location="${build.dir}"/>
762 <mkdir dir="${proj-build.dir}"/>
763 <javac sourcepath="" srcdir="${base.dir}/scripts" failonerror="true"
764 destdir="${proj-build.dir}" target="1.8" source="1.8" debug="on"
765 includeantruntime="false" createMissingPackageInfoClass="false"
766 encoding="UTF-8" classpath="${proj-classpath}">
767 </javac>
768 </target>
769 <!--
770 ** generate projection list.
771 -->
772 <target name="epsg" depends="epsg-compile">
773 <touch file="${epsg.output}"/>
774 <java classname="BuildProjectionDefinitions" failonerror="true" fork="true">
775 <sysproperty key="java.awt.headless" value="true"/>
776 <classpath>
777 <pathelement path="${base.dir}"/>
778 <pathelement path="${proj-classpath}"/>
779 <pathelement path="${proj-build.dir}"/>
780 </classpath>
781 <arg value="${base.dir}"/>
782 </java>
783 </target>
784</project>
Note: See TracBrowser for help on using the repository browser.