source: josm/trunk/build.xml@ 11621

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

go back to error_prone 2.0.15 - see https://github.com/google/error-prone/issues/546

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