source: josm/trunk/build.xml@ 15196

Last change on this file since 15196 was 15106, checked in by Don-vip, 5 years ago

see #16047 - fix javadoc warning on Java 11+

  • Property svn:eol-style set to native
File size: 60.3 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" xmlns:unless="ant:unless">
12 <target name="init-properties">
13 <property environment="env"/>
14 <!-- Load properties in a target and not at top level, so this build file can be
15 imported from an IDE ant file (Netbeans) without messing up IDE properties.
16 When imported from another file, ${basedir} will point to the parent directory
17 of the importing ant file. Use ${base.dir} instead, which is always the parent
18 directory of this file. -->
19 <dirname property="base.dir" file="${ant.file.josm}"/>
20 <property name="test.dir" location="${base.dir}/test"/>
21 <property name="src.dir" location="${base.dir}/src"/>
22 <condition property="noJavaFX">
23 <or>
24 <isset property="env.JOSM_NOJAVAFX"/>
25 <not>
26 <available classname="javafx.scene.media.Media"/>
27 </not>
28 </or>
29 </condition>
30 <property name="build.dir" location="${base.dir}/build"/>
31 <property name="dist.dir" location="${base.dir}/dist"/>
32 <property name="modules.dir" location="${dist.dir}/modules"/>
33 <property name="tools.dir" location="${base.dir}/tools"/>
34 <property name="pmd.dir" location="${tools.dir}/pmd"/>
35 <property name="checkstyle.dir" location="${tools.dir}/checkstyle"/>
36 <property name="spotbugs.dir" location="${tools.dir}/spotbugs"/>
37 <property name="javacc.home" location="${tools.dir}"/>
38 <property name="mapcss.dir" location="${src.dir}/org/openstreetmap/josm/gui/mappaint/mapcss"/>
39 <property name="proj-build.dir" location="${base.dir}/build2"/>
40 <property name="script-build.dir" location="${base.dir}/build2"/>
41 <property name="checkstyle-build.dir" location="${base.dir}/build2"/>
42 <property name="epsg.output" location="${base.dir}/data/projection/custom-epsg"/>
43 <property name="error_prone_core.jar" location="${tools.dir}/error_prone_core.jar"/>
44 <property name="error_prone_javac.jar" location="${tools.dir}/error_prone_javac.jar"/>
45 <property name="dataflow.jar" location="${tools.dir}/dataflow.jar"/>
46 <property name="javacutil.jar" location="${tools.dir}/javacutil.jar"/>
47 <property name="failureaccess.jar" location="${tools.dir}/failureaccess.jar"/>
48 <property name="guava.jar" location="${tools.dir}/guava.jar"/>
49 <property name="commons-lang3.jar" location="${pmd.dir}/commons-lang3-3.8.1.jar"/>
50 <property name="jformatstring.jar" location="${spotbugs.dir}/jFormatString-3.0.0.jar"/>
51 <property name="dist.jar" location="${dist.dir}/josm-custom.jar"/>
52 <property name="dist-optimized.jar" location="${dist.dir}/josm-custom-optimized.jar"/>
53 <property name="java.lang.version" value="1.8" />
54 <property name="test.headless" value="true" />
55 <property name="jacoco.includes" value="org.openstreetmap.josm.*" />
56 <property name="jacoco.inclbootstrapclasses" value="false" />
57 <property name="jacoco.inclnolocationclasses" value="false" />
58 <property name="junit.printsummary" value="on" />
59 <property name="default-junit-includes" value="**/*Test.class"/>
60 <property name="default-junitIT-includes" value="**/*TestIT.class"/>
61 <!-- build parameter: compression level (ant -Dclevel=N)
62 N ranges from 0 (no compression) to 9 (maximum compression)
63 default: 9 -->
64 <condition property="clevel" value="${clevel}" else="9">
65 <isset property="clevel"/>
66 </condition>
67 <!-- For Java specific stuff by version -->
68 <condition property="isJava9"><matches string="${ant.java.version}" pattern="(1.)?(9|1[0-9])" /></condition>
69 <condition property="isJava10"><matches string="${ant.java.version}" pattern="1[0-9]" /></condition>
70 <condition property="isJava11"><matches string="${ant.java.version}" pattern="1[1-9]" /></condition>
71 <condition property="isJava12"><matches string="${ant.java.version}" pattern="1[2-9]" /></condition>
72 <condition property="isJava13"><matches string="${ant.java.version}" pattern="1[3-9]" /></condition>
73 <!-- Disable jacoco on Java 13+, see https://github.com/jacoco/jacoco/pull/738 -->
74 <condition property="coverageByDefault">
75 <not>
76 <isset property="isJava13"/>
77 </not>
78 </condition>
79 <condition property="java.library.dir" value="jmods" else="lib">
80 <isset property="isJava9"/>
81 </condition>
82 <path id="test.classpath">
83 <fileset dir="${test.dir}/lib">
84 <include name="**/*.jar"/>
85 </fileset>
86 <pathelement path="${dist.jar}"/>
87 <pathelement path="${failureaccess.jar}"/>
88 <pathelement path="${guava.jar}"/>
89 <pathelement path="${commons-lang3.jar}"/>
90 <pathelement path="${spotbugs.dir}/spotbugs-annotations.jar"/>
91 </path>
92 <path id="pmd.classpath">
93 <fileset dir="${pmd.dir}">
94 <include name="*.jar"/>
95 </fileset>
96 </path>
97 <path id="processor.path">
98 <pathelement location="${error_prone_core.jar}"/>
99 <pathelement location="${dataflow.jar}"/>
100 <pathelement location="${javacutil.jar}"/>
101 <pathelement location="${failureaccess.jar}"/>
102 <pathelement location="${guava.jar}"/>
103 <pathelement location="${jformatstring.jar}"/>
104 </path>
105 </target>
106
107 <!--
108 ** Used by Eclipse ant builder for updating
109 ** the REVISION file used by JOSM
110 -->
111 <target name="create-revision-eclipse">
112 <property name="revision.dir" value="bin"/>
113 <antcall target="create-revision"/>
114 <mkdir dir="bin/META-INF/services"/>
115 <echo encoding="UTF-8" file="bin/META-INF/services/java.text.spi.DecimalFormatSymbolsProvider">org.openstreetmap.josm.tools.JosmDecimalFormatSymbolsProvider</echo>
116 </target>
117 <!--
118 ** Initializes the REVISION.XML file from SVN information
119 -->
120 <target name="init-svn-revision-xml" depends="init-properties">
121 <exec append="false" output="${base.dir}/REVISION.XML" executable="svn" dir="${base.dir}" failifexecutionfails="false" resultproperty="svn.info.result">
122 <env key="LANG" value="C"/>
123 <arg value="info"/>
124 <arg value="--xml"/>
125 <arg value="."/>
126 </exec>
127 <condition property="svn.info.success">
128 <equals arg1="${svn.info.result}" arg2="0" />
129 </condition>
130 </target>
131 <!--
132 ** Initializes the REVISION.XML file from git information
133 -->
134 <target name="init-git-revision-xml" unless="svn.info.success" depends="init-properties">
135 <exec append="false" output="${base.dir}/REVISION.XML" executable="git" dir="${base.dir}" failifexecutionfails="false">
136 <arg value="log"/>
137 <arg value="-1"/>
138 <arg value="--grep=git-svn-id"/>
139 <!--
140 %B: raw body (unwrapped subject and body)
141 %n: new line
142 %ai: author date, ISO 8601 format
143 -->
144 <arg value="--pretty=format:%B%n%ai"/>
145 <arg value="HEAD"/>
146 </exec>
147 <replaceregexp file="${base.dir}/REVISION.XML" flags="s"
148 match=".*git-svn-id: [^@]*@([0-9]+).*(\d{4}-\d{2}-\d{2}.\d{2}\:\d{2}\:\d{2}\s*[+-]\d{2}:?\d{2})\s*$"
149 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;"/>
150 </target>
151 <!--
152 ** Creates the REVISION file to be included in the distribution
153 -->
154 <target name="create-revision" depends="init-properties,init-svn-revision-xml,init-git-revision-xml">
155 <property name="revision.dir" value="${build.dir}"/>
156 <xmlproperty file="${base.dir}/REVISION.XML" prefix="version" keepRoot="false" collapseAttributes="true"/>
157 <delete file="${base.dir}/REVISION.XML"/>
158 <tstamp>
159 <format property="build.tstamp" pattern="yyyy-MM-dd HH:mm:ss"/>
160 </tstamp>
161 <property name="version.entry.commit.revision" value="UNKNOWN"/>
162 <property name="version.entry.commit.date" value="UNKNOWN"/>
163 <mkdir dir="${revision.dir}"/>
164 <!-- add Build-Name: ... when making special builds, e.g. DEBIAN -->
165 <echo file="${revision.dir}/REVISION">
166# automatically generated by JOSM build.xml - do not edit
167Revision: ${version.entry.commit.revision}
168Is-Local-Build: true
169Build-Date: ${build.tstamp}
170</echo>
171 </target>
172 <!--
173 ** Check internal XML files against their XSD
174 -->
175 <target name="check-schemas" unless="check-schemas.notRequired" depends="init-properties">
176 <schemavalidate file="data/defaultpresets.xml" >
177 <schema namespace="http://josm.openstreetmap.de/tagging-preset-1.0" file="data/tagging-preset.xsd" />
178 </schemavalidate>
179 </target>
180 <!--
181 ** Main target that builds JOSM and checks XML against schemas
182 -->
183 <target name="dist" depends="compile,create-revision,check-schemas,epsg">
184 <echo>Revision ${version.entry.commit.revision}</echo>
185 <copy file="CONTRIBUTION" todir="${build.dir}"/>
186 <copy file="README" todir="${build.dir}"/>
187 <copy file="LICENSE" todir="${build.dir}"/>
188 <!-- create josm-custom.jar -->
189 <delete file="${dist.jar}"/>
190 <jar destfile="${dist.jar}" basedir="${build.dir}" level="${clevel}">
191 <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
192 <manifest>
193 <attribute name="Main-class" value="org.openstreetmap.josm.gui.MainApplication"/>
194 <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
195 <attribute name="Main-Date" value="${version.entry.commit.date}"/>
196 <attribute name="Permissions" value="all-permissions"/>
197 <attribute name="Codebase" value="josm.openstreetmap.de"/>
198 <attribute name="Application-Name" value="JOSM - Java OpenStreetMap Editor"/>
199 <!-- Java 9 stuff. Entries are safely ignored by Java 8 -->
200 <attribute name="Add-Exports" value="java.base/sun.security.util java.base/sun.security.x509 java.desktop/com.apple.eawt java.desktop/com.sun.imageio.spi javafx.graphics/com.sun.javafx.application jdk.deploy/com.sun.deploy.config" />
201 <attribute name="Add-Opens" value="java.base/java.lang java.base/java.nio java.base/jdk.internal.loader java.base/jdk.internal.ref java.desktop/javax.imageio.spi java.desktop/javax.swing.text.html java.prefs/java.util.prefs" />
202 </manifest>
203 <service type="java.text.spi.DecimalFormatSymbolsProvider" provider="org.openstreetmap.josm.tools.JosmDecimalFormatSymbolsProvider" />
204 <zipfileset dir="images" prefix="images"/>
205 <zipfileset dir="data" prefix="data"/>
206 <zipfileset dir="styles" prefix="styles"/>
207 <zipfileset dir="${src.dir}/org/openstreetmap/gui/jmapviewer/images" prefix="org/openstreetmap/gui/jmapviewer/images"/>
208 </jar>
209 </target>
210 <!-- Mac OS X target -->
211 <target name="mac" depends="init-properties">
212 <!-- Using https://bitbucket.org/infinitekind/appbundler to create mac application bundle -->
213 <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="${tools.dir}/appbundler.jar"/>
214 <!-- create MacOS X application bundle -->
215 <bundleapp outputdirectory="${bundle.outdir}" name="JOSM" displayname="JOSM" executablename="JOSM" identifier="org.openstreetmap.josm"
216 mainclassname="org.openstreetmap.josm.gui.MainApplication"
217 copyright="JOSM, and all its integral parts, are released under the GNU General Public License v2 or later"
218 applicationCategory="public.app-category.utilities"
219 shortversion="${version.entry.commit.revision} SVN"
220 version="${version.entry.commit.revision} SVN"
221 icon="macosx/JOSM.app/Contents/Resources/JOSM.icns"
222 highResolutionCapable="true">
223
224 <arch name="x86_64"/>
225 <arch name="i386"/>
226
227 <classpath file="${bundle.jar}"/>
228
229 <option value="-Xmx2048m"/>
230
231 <option value="-Xdock:icon=Contents/Resources/JOSM.icns"/>
232 <option value="-Xdock:name=JOSM"/>
233
234 <!-- OSX specific options, optional -->
235 <option value="-Dapple.laf.useScreenMenuBar=true"/>
236 <option value="-Dcom.apple.macos.use-file-dialog-packages=true"/>
237 <option value="-Dcom.apple.macos.useScreenMenuBar=true"/>
238 <option value="-Dcom.apple.mrj.application.apple.menu.about.name=JOSM"/>
239 <option value="-Dcom.apple.smallTabs=true"/>
240 </bundleapp>
241
242 <!-- appbundler lacks the possibility of defining our own keys or using a template, so update the .plist manually -->
243 <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask" classpath="${tools.dir}/xmltask.jar"/>
244
245 <xmltask source="${bundle.outdir}/JOSM.app/Contents/Info.plist" dest="${bundle.outdir}/JOSM.app/Contents/Info.plist" indent="false">
246 <!-- remove empty CFBundleDocumentTypes definition -->
247 <remove path="/plist/dict/key[text()='CFBundleDocumentTypes']|/plist/dict/key[text()='CFBundleDocumentTypes']/following-sibling::array[1]"/>
248 <!-- insert our own keys -->
249 <insert position="before" path="/plist/dict/key[1]" file="macosx/JOSM.app/Contents/Info.plist_template.xml" />
250 </xmltask>
251
252 <!-- create ZIP file with MacOS X application bundle -->
253 <zip destfile="${bundle.outdir}/josm-custom-macosx.zip" update="true">
254 <zipfileset dir="." includes="CONTRIBUTION README LICENSE"/>
255 <zipfileset dir="${bundle.outdir}" includes="JOSM.app/**/*" filemode="755" />
256 </zip>
257 </target>
258 <target name="distmac" depends="dist">
259 <antcall target="mac">
260 <param name="bundle.outdir" value="${dist.dir}"/>
261 <param name="bundle.jar" value="${dist.jar}"/>
262 </antcall>
263 </target>
264 <!-- Windows target -->
265 <target name="distwin" depends="dist">
266 <exec dir="windows" executable="./josm-setup-unix.sh">
267 <arg value="${version.entry.commit.revision}"/>
268 <arg value="${dist.jar}"/>
269 </exec>
270 </target>
271 <target name="javacc" depends="init" unless="javacc.notRequired">
272 <mkdir dir="${mapcss.dir}/parsergen"/>
273 <java classname="javacc" fork="true" failonerror="true">
274 <classpath path="${javacc.home}/javacc.jar"/>
275 <arg value="-DEBUG_PARSER=false"/>
276 <arg value="-DEBUG_TOKEN_MANAGER=false"/>
277 <arg value="-JDK_VERSION=${java.lang.version}"/>
278 <arg value="-GRAMMAR_ENCODING=UTF-8"/>
279 <arg value="-OUTPUT_DIRECTORY=${mapcss.dir}/parsergen"/>
280 <arg value="${mapcss.dir}/MapCSSParser.jj"/>
281 </java>
282 </target>
283 <target name="compile-cots" depends="init">
284 <!-- COTS -->
285 <javac srcdir="${src.dir}" includes="com/**,javax/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/tukaani/**" nowarn="on" encoding="iso-8859-1"
286 destdir="${build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on" includeAntRuntime="false" createMissingPackageInfoClass="false">
287 <!-- get rid of "internal proprietary API" warning -->
288 <compilerarg value="-XDignore.symbol.file"/>
289 <exclude name="org/apache/commons/compress/PasswordRequiredException.java"/>
290 <exclude name="org/apache/commons/compress/archivers/**"/>
291 <exclude name="org/apache/commons/compress/changes/**"/>
292 <exclude name="org/apache/commons/compress/compressors/bzip2/BZip2Utils.java"/>
293 <exclude name="org/apache/commons/compress/compressors/brotli/**"/>
294 <exclude name="org/apache/commons/compress/compressors/CompressorStreamFactory.java"/>
295 <exclude name="org/apache/commons/compress/compressors/CompressorStreamProvider.java"/>
296 <exclude name="org/apache/commons/compress/compressors/CompressorException.java"/>
297 <exclude name="org/apache/commons/compress/compressors/FileNameUtil.java"/>
298 <exclude name="org/apache/commons/compress/compressors/deflate/**"/>
299 <exclude name="org/apache/commons/compress/compressors/gzip/**"/>
300 <exclude name="org/apache/commons/compress/compressors/lz4/**"/>
301 <exclude name="org/apache/commons/compress/compressors/lzma/**"/>
302 <exclude name="org/apache/commons/compress/compressors/lz77support/**"/>
303 <exclude name="org/apache/commons/compress/compressors/pack200/**"/>
304 <exclude name="org/apache/commons/compress/compressors/snappy/**"/>
305 <exclude name="org/apache/commons/compress/compressors/xz/XZUtils.java"/>
306 <exclude name="org/apache/commons/compress/compressors/z/**"/>
307 <exclude name="org/apache/commons/compress/compressors/zstandard/**"/>
308 <exclude name="org/apache/commons/compress/parallel/**"/>
309 <exclude name="org/apache/commons/compress/utils/ArchiveUtils.java"/>
310 <exclude name="org/apache/commons/jcs/JCS.java"/>
311 <exclude name="org/apache/commons/jcs/access/GroupCacheAccess.java"/>
312 <exclude name="org/apache/commons/jcs/access/PartitionedCacheAccess.java"/>
313 <exclude name="org/apache/commons/jcs/access/behavior/IGroupCacheAccess.java"/>
314 <exclude name="org/apache/commons/jcs/access/exception/InvalidGroupException.java"/>
315 <exclude name="org/apache/commons/jcs/admin/servlet/**"/>
316 <exclude name="org/apache/commons/jcs/auxiliary/AbstractAuxiliaryCacheMonitor.java"/>
317 <exclude name="org/apache/commons/jcs/auxiliary/disk/jdbc/**"/>
318 <exclude name="org/apache/commons/jcs/auxiliary/lateral/**"/>
319 <exclude name="org/apache/commons/jcs/auxiliary/remote/**"/>
320 <exclude name="org/apache/commons/jcs/engine/CacheAdaptor.java"/>
321 <exclude name="org/apache/commons/jcs/engine/CacheGroup.java"/>
322 <exclude name="org/apache/commons/jcs/engine/CacheWatchRepairable.java"/>
323 <exclude name="org/apache/commons/jcs/engine/Zombie*.java"/>
324 <exclude name="org/apache/commons/jcs/engine/logging/CacheEventLoggerDebugLogger.java"/>
325 <exclude name="org/apache/commons/jcs/utils/access/**"/>
326 <exclude name="org/apache/commons/jcs/utils/discovery/**"/>
327 <exclude name="org/apache/commons/jcs/utils/net/**"/>
328 <exclude name="org/apache/commons/jcs/utils/props/**"/>
329 <exclude name="org/apache/commons/jcs/utils/servlet/**"/>
330 <exclude name="org/apache/commons/logging/impl/AvalonLogger.java"/>
331 <exclude name="org/apache/commons/logging/impl/Jdk13LumberjackLogger.java"/>
332 <exclude name="org/apache/commons/logging/impl/Log4JLogger.java"/>
333 <exclude name="org/apache/commons/logging/impl/LogKitLogger.java"/>
334 <exclude name="org/apache/commons/logging/impl/ServletContextCleaner.java"/>
335 </javac>
336 </target>
337 <target name="compile-jmapviewer" depends="init">
338 <!-- JMapViewer -->
339 <javac sourcepath="" srcdir="${src.dir}" fork="yes"
340 excludes="com/**,javax/**,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/**,org/tukaani/**"
341 destdir="${build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
342 <compilerarg value="-J-Xbootclasspath/p:${error_prone_javac.jar}" unless:set="isJava9"/>
343 <compilerarg line="-XDcompilePolicy=simple"/>
344 <compilerarg value="-processorpath"/>
345 <compilerarg pathref="processor.path"/>
346 <compilerarg value="-Xlint:cast"/>
347 <compilerarg value="-Xlint:deprecation"/>
348 <compilerarg value="-Xlint:dep-ann"/>
349 <compilerarg value="-Xlint:divzero"/>
350 <compilerarg value="-Xlint:empty"/>
351 <compilerarg value="-Xlint:finally"/>
352 <compilerarg value="-Xlint:overrides"/>
353 <!--<compilerarg value="-Xlint:rawtypes"/>-->
354 <compilerarg value="-Xlint:static"/>
355 <compilerarg value="-Xlint:try"/>
356 <compilerarg value="-Xlint:unchecked"/>
357 <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
358 <compilerarg value="-XDignore.symbol.file"/>
359 <compilerarg value="-Xplugin:ErrorProne -Xep:CatchAndPrintStackTrace:OFF -Xep:ReferenceEquality:OFF -Xep:StringSplitter:OFF"/>
360 <compilerarg line="-Xmaxwarns 1000"/>
361 </javac>
362 </target>
363 <target name="compile" depends="init,javacc,compile-cots,compile-jmapviewer">
364 <!-- JOSM -->
365 <javac sourcepath="" srcdir="${src.dir}" fork="yes"
366 excludes="com/**,javax/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/**,org/tukaani/**"
367 destdir="${build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
368 <compilerarg value="-J-Xbootclasspath/p:${error_prone_javac.jar}" unless:set="isJava9"/>
369 <compilerarg line="-XDcompilePolicy=simple"/>
370 <compilerarg value="-processorpath"/>
371 <compilerarg pathref="processor.path"/>
372 <compilerarg value="-Xlint:cast"/>
373 <compilerarg value="-Xlint:deprecation"/>
374 <compilerarg value="-Xlint:dep-ann"/>
375 <compilerarg value="-Xlint:divzero"/>
376 <compilerarg value="-Xlint:empty"/>
377 <compilerarg value="-Xlint:finally"/>
378 <compilerarg value="-Xlint:overrides"/>
379 <!--<compilerarg value="-Xlint:rawtypes"/>-->
380 <compilerarg value="-Xlint:static"/>
381 <compilerarg value="-Xlint:try"/>
382 <compilerarg value="-Xlint:unchecked"/>
383 <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
384 <compilerarg value="-XDignore.symbol.file"/>
385 <compilerarg value="-Xplugin:ErrorProne -Xep:ReferenceEquality:OFF -Xep:ImmutableEnumChecker:OFF -Xep:FutureReturnValueIgnored:OFF -Xep:FloatingPointLiteralPrecision:OFF -Xep:ShortCircuitBoolean:OFF -Xep:StringSplitter:OFF -Xep:JdkObsolete:OFF -Xep:UnnecessaryParentheses:OFF -Xep:EqualsGetClass:OFF -Xep:ThreadPriorityCheck:OFF -Xep:UndefinedEquals:OFF -Xep:MixedMutabilityReturnType:OFF -Xep:OverrideThrowableToString:OFF -Xep:JavaTimeDefaultTimeZone:OFF -Xep:UnusedVariable:OFF -Xep:EqualsUsingHashCode:OFF"/>
386 <compilerarg line="-Xmaxwarns 1000"/>
387 <exclude name="org/openstreetmap/josm/io/audio/fx/*.java" if:set="noJavaFX"/>
388 </javac>
389
390 <copy todir="build" failonerror="no" includeemptydirs="no">
391 <fileset dir="resources"/>
392 </copy>
393 </target>
394 <target name="init" depends="init-properties">
395 <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
396 <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
397 </uptodate>
398 <mkdir dir="${build.dir}"/>
399 <mkdir dir="${dist.dir}"/>
400 </target>
401 <target name="javadoc" depends="init-properties">
402 <javadoc destdir="javadoc"
403 sourcepath="${src.dir}"
404 encoding="UTF-8"
405 packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
406 excludepackagenames="org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.*"
407 windowtitle="JOSM"
408 use="true"
409 private="true"
410 linksource="true"
411 author="false">
412 <link href="https://docs.oracle.com/javase/8/docs/api" unless:set="isJava11" />
413 <link href="https://docs.oracle.com/en/java/javase/11/docs/api" if:set="isJava11" />
414 <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
415 <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
416 <arg value="-html5" if:set="isJava9" />
417 <arg value="--add-exports" if:set="isJava9" />
418 <arg value="java.base/sun.security.util=ALL-UNNAMED" if:set="isJava9" />
419 <arg value="--add-exports" if:set="isJava9" />
420 <arg value="java.base/sun.security.x509=ALL-UNNAMED" if:set="isJava9" />
421 <arg value="--add-exports" if:set="isJava9" unless:set="noJavaFX" />
422 <arg value="javafx.graphics/com.sun.javafx.application=ALL-UNNAMED" if:set="isJava9" unless:set="noJavaFX" />
423 <excludepackage name="org/openstreetmap/josm/io/audio/fx" if:set="noJavaFX" />
424 </javadoc>
425 </target>
426 <target name="clean" depends="init-properties">
427 <delete dir="${build.dir}"/>
428 <delete dir="${proj-build.dir}"/>
429 <delete dir="${script-build.dir}"/>
430 <delete dir="${checkstyle-build.dir}"/>
431 <delete dir="${dist.dir}"/>
432 <delete dir="${mapcss.dir}/parsergen"/>
433 <delete file="${src.dir}/org/w3/_2001/xmlschema/Adapter1.java"/>
434 <delete dir="${src.dir}/org/openstreetmap/josm/data/imagery/types"/>
435 <delete file="${epsg.output}"/>
436 <delete file="${pmd.dir}/cache"/>
437 </target>
438 <macrodef name="init-test-preferences">
439 <attribute name="testfamily"/>
440 <sequential>
441 <copy file="${test.dir}/config/preferences.template.xml" tofile="${test.dir}/config/@{testfamily}-josm.home/preferences.xml"/>
442 <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_USERNAME@" value="${osm.username}"/>
443 <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_PASSWORD@" value="${osm.password}"/>
444 </sequential>
445 </macrodef>
446 <target name="test-init" depends="init-properties">
447 <mkdir dir="${test.dir}/build"/>
448 <mkdir dir="${test.dir}/build/unit"/>
449 <mkdir dir="${test.dir}/build/functional"/>
450 <mkdir dir="${test.dir}/build/performance"/>
451 <mkdir dir="${test.dir}/report"/>
452 <init-test-preferences testfamily="unit"/>
453 <init-test-preferences testfamily="functional"/>
454 <init-test-preferences testfamily="performance"/>
455 <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="${tools.dir}/jacocoant.jar" />
456 </target>
457 <target name="test-clean" depends="init-properties">
458 <delete dir="${test.dir}/build"/>
459 <delete dir="${test.dir}/report"/>
460 <delete file="${test.dir}/jacoco.exec" />
461 <delete file="${test.dir}/jacocoIT.exec" />
462 <delete file="${test.dir}/config/unit-josm.home" failonerror="false"/>
463 <delete file="${test.dir}/config/functional-josm.home" failonerror="false"/>
464 <delete file="${test.dir}/config/performance-josm.home" failonerror="false"/>
465 </target>
466 <macrodef name="call-javac">
467 <attribute name="testfamily"/>
468 <element name="cp-elements"/>
469 <sequential>
470 <javac srcdir="${test.dir}/@{testfamily}" destdir="${test.dir}/build/@{testfamily}"
471 target="${java.lang.version}" source="${java.lang.version}" debug="on"
472 includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
473 <compilerarg value="-Xlint:all"/>
474 <compilerarg value="-Xlint:-serial"/>
475 <classpath>
476 <cp-elements/>
477 </classpath>
478 </javac>
479 </sequential>
480 </macrodef>
481 <target name="test-compile" depends="test-init,dist">
482 <call-javac testfamily="unit">
483 <cp-elements>
484 <path refid="test.classpath"/>
485 </cp-elements>
486 </call-javac>
487 <call-javac testfamily="functional">
488 <cp-elements>
489 <path refid="test.classpath"/>
490 <pathelement path="${test.dir}/build/unit"/>
491 </cp-elements>
492 </call-javac>
493 <call-javac testfamily="performance">
494 <cp-elements>
495 <path refid="test.classpath"/>
496 <pathelement path="${test.dir}/build/unit"/>
497 </cp-elements>
498 </call-javac>
499 </target>
500 <macrodef name="call-junit">
501 <attribute name="testfamily"/>
502 <attribute name="testITsuffix" default=""/>
503 <attribute name="coverage" default="${coverageByDefault}"/>
504 <attribute name="includes" default="${default-junit@{testITsuffix}-includes}"/>
505 <attribute name="excludes" default="${default-junit@{testITsuffix}-excludes}"/>
506 <sequential>
507 <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
508 <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}" includes="${jacoco.includes}"
509 inclbootstrapclasses="${jacoco.inclbootstrapclasses}" inclnolocationclasses="${jacoco.inclnolocationclasses}">
510 <junit printsummary="${junit.printsummary}" fork="true" forkmode="once" failureproperty="test.@{testfamily}@{testITsuffix}.failed">
511 <jvmarg value="-Dfile.encoding=UTF-8"/>
512 <jvmarg value="-javaagent:${test.dir}/lib/jmockit.jar"/>
513 <jvmarg value="--add-modules" if:set="isJava9" unless:set="isJava11" />
514 <jvmarg value="java.activation,java.se.ee" if:set="isJava9" unless:set="isJava11" />
515 <jvmarg value="--add-exports" if:set="isJava9" />
516 <jvmarg value="java.base/sun.security.util=ALL-UNNAMED" if:set="isJava9" />
517 <jvmarg value="--add-exports" if:set="isJava9" />
518 <jvmarg value="java.base/sun.security.x509=ALL-UNNAMED" if:set="isJava9" />
519 <jvmarg value="--add-exports" if:set="isJava9" unless:set="noJavaFX" />
520 <jvmarg value="javafx.graphics/com.sun.javafx.application=ALL-UNNAMED" if:set="isJava9" unless:set="noJavaFX" />
521 <jvmarg value="--add-exports" if:set="isJava9" unless:set="isJava11" />
522 <jvmarg value="jdk.deploy/com.sun.deploy.config=ALL-UNNAMED" if:set="isJava9" unless:set="isJava11" />
523 <jvmarg value="--add-opens" if:set="isJava9" />
524 <jvmarg value="java.base/java.io=ALL-UNNAMED" if:set="isJava9" />
525 <jvmarg value="--add-opens" if:set="isJava9" />
526 <jvmarg value="java.base/java.lang=ALL-UNNAMED" if:set="isJava9" />
527 <jvmarg value="--add-opens" if:set="isJava9" />
528 <jvmarg value="java.base/java.nio=ALL-UNNAMED" if:set="isJava9" />
529 <jvmarg value="--add-opens" if:set="isJava9" />
530 <jvmarg value="java.base/java.text=ALL-UNNAMED" if:set="isJava9" />
531 <jvmarg value="--add-opens" if:set="isJava9" />
532 <jvmarg value="java.base/java.util=ALL-UNNAMED" if:set="isJava9" />
533 <jvmarg value="--add-opens" if:set="isJava9" />
534 <jvmarg value="java.base/jdk.internal.loader=ALL-UNNAMED" if:set="isJava9" />
535 <jvmarg value="--add-opens" if:set="isJava9" />
536 <jvmarg value="java.desktop/java.awt=ALL-UNNAMED" if:set="isJava9" />
537 <sysproperty key="josm.home" value="${test.dir}/config/@{testfamily}-josm.home"/>
538 <sysproperty key="josm.test.data" value="${test.dir}/data"/>
539 <sysproperty key="java.awt.headless" value="${test.headless}"/>
540 <sysproperty key="glass.platform" value="Monocle"/>
541 <sysproperty key="monocle.platform" value="Headless"/>
542 <sysproperty key="prism.order" value="sw"/>
543 <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
544 <classpath>
545 <path refid="test.classpath"/>
546 <pathelement path="${test.dir}/build/unit"/>
547 <pathelement path="${test.dir}/build/@{testfamily}"/>
548 <pathelement path="${test.dir}/config"/>
549 </classpath>
550 <formatter type="plain"/>
551 <formatter type="xml"/>
552 <batchtest fork="yes" todir="${test.dir}/report">
553 <fileset dir="${test.dir}/build/@{testfamily}" includes="@{includes}" excludes="@{excludes}"/>
554 </batchtest>
555 </junit>
556 </jacoco:coverage>
557 </sequential>
558 </macrodef>
559 <target name="test" depends="test-compile" unless="test.notRequired"
560 description="Run unit and functional tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
561 <call-junit testfamily="unit"/>
562 <call-junit testfamily="functional"/>
563 </target>
564 <target name="test-hardfail" depends="test" description="Run 'test' target but abort if tests failed">
565 <fail message="'test' failed">
566 <condition>
567 <or>
568 <isset property="test.unit.failed"/>
569 <isset property="test.functional.failed"/>
570 </or>
571 </condition>
572 </fail>
573 </target>
574 <target name="test-unit" depends="test-compile" unless="test-unit.notRequired"
575 description="Run unit tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
576 <call-junit testfamily="unit"/>
577 </target>
578 <target name="test-unit-hardfail" depends="test-unit" description="Run 'test-unit' target but abort if tests failed">
579 <fail message="'test-unit' failed" if="test.unit.failed"/>
580 </target>
581 <target name="test-it" depends="test-compile" unless="test-it.notRequired"
582 description="Run integration tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
583 <call-junit testfamily="unit" testITsuffix="IT"/>
584 <call-junit testfamily="functional" testITsuffix="IT"/>
585 </target>
586 <target name="test-it-hardfail" depends="test-it" description="Run 'test-it' target but abort if tests failed">
587 <fail message="'test-it' failed">
588 <condition>
589 <or>
590 <isset property="test.unitIT.failed"/>
591 <isset property="test.functionalIT.failed"/>
592 </or>
593 </condition>
594 </fail>
595 </target>
596 <target name="test-perf" depends="test-compile" unless="test-perf.notRequired"
597 description="Run performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
598 <call-junit testfamily="performance" coverage="false"/>
599 </target>
600 <target name="test-perf-hardfail" depends="test-perf" description="Run 'test-perf' target but abort if tests failed">
601 <fail message="'test-perf' failed" if="test.performance.failed"/>
602 </target>
603 <target name="test-html" depends="test, test-it, test-perf" description="Generate HTML test reports">
604 <!-- May require additional ant dependencies like ant-trax package -->
605 <junitreport todir="${test.dir}/report">
606 <fileset dir="${test.dir}/report">
607 <include name="TEST-*.xml"/>
608 </fileset>
609 <report todir="${test.dir}/report/html"/>
610 </junitreport>
611 <jacoco:report>
612 <executiondata>
613 <fileset dir="${test.dir}" includes="*.exec"/>
614 </executiondata>
615 <structure name="JOSM Test Coverage">
616 <classfiles>
617 <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
618 </classfiles>
619 <sourcefiles encoding="UTF-8">
620 <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
621 </sourcefiles>
622 </structure>
623 <html destdir="${test.dir}/report/jacoco"/>
624 </jacoco:report>
625 </target>
626 <target name="dist-optimized" depends="dist" unless="isJava11">
627 <taskdef resource="proguard/ant/task.properties" classpath="${tools.dir}/proguard.jar"/>
628 <proguard>
629 -injars ${dist.jar}
630 -outjars ${dist-optimized.jar}
631
632 -libraryjars ${java.home}/${java.library.dir}
633
634 -dontoptimize
635 -dontobfuscate
636
637 # These options probably are not necessary (and make processing a bit slower)
638 -dontskipnonpubliclibraryclasses
639 -dontskipnonpubliclibraryclassmembers
640
641 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
642 public static void main(java.lang.String[]);
643 }
644
645 -keep class * extends org.openstreetmap.josm.io.FileImporter
646 -keep class * extends org.openstreetmap.josm.io.FileExporter
647 -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
648 -keep class org.openstreetmap.josm.gui.mappaint.mapcss.ConditionFactory$PseudoClasses {
649 static boolean *(org.openstreetmap.josm.gui.mappaint.Environment);
650 }
651 -keep class org.apache.commons.logging.impl.*
652
653 -keepclassmembers enum * {
654 public static **[] values();
655 public static ** valueOf(java.lang.String);
656 }
657
658 # Keep unused public classes and methods (needed for plugins)
659 -keep public class * {
660 public protected *;
661 }
662
663 # Keep serialization code
664 -keepclassmembers class * implements java.io.Serializable {
665 static final long serialVersionUID;
666 private static final java.io.ObjectStreamField[] serialPersistentFields;
667 private void writeObject(java.io.ObjectOutputStream);
668 private void readObject(java.io.ObjectInputStream);
669 java.lang.Object writeReplace();
670 java.lang.Object readResolve();
671 }
672
673 # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'.
674 # This note should not be a problem as we don't use obfuscation
675 -dontnote
676 </proguard>
677 </target>
678 <target name="dist-optimized-report" depends="dist-optimized">
679 <!-- generate difference report between optimized jar and normal one -->
680 <exec executable="perl" dir="${basedir}">
681 <arg value="${tools.dir}/japicc/japi-compliance-checker.pl"/>
682 <arg value="--lib=JOSM"/>
683 <arg value="--keep-internal"/>
684 <arg value="--v1=${version.entry.commit.revision}"/>
685 <arg value="--v2=${version.entry.commit.revision}-optimized"/>
686 <arg value="--report-path=${dist.dir}/compat_report.html"/>
687 <arg value="${dist.jar}"/>
688 <arg value="${dist-optimized.jar}"/>
689 </exec>
690 </target>
691 <target name="check-plugins" depends="dist-optimized" description="Check of plugins binary compatibility" unless="isJava11">
692 <local name="dir"/>
693 <local name="plugins"/>
694 <property name="dir" value="plugin-check"/>
695 <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
696 <classpath path="${tools.dir}/animal-sniffer-ant-tasks.jar"/>
697 </typedef>
698 <delete dir="${dir}" failonerror="false"/>
699 <mkdir dir="${dir}"/>
700 <!-- List of deprecated plugins -->
701 <loadfile property="deprecated-plugins" srcFile="${src.dir}/org/openstreetmap/josm/plugins/PluginHandler.java">
702 <filterchain>
703 <linecontains>
704 <contains value="new DeprecatedPlugin("/>
705 </linecontains>
706 <tokenfilter>
707 <replaceregex pattern=".*new DeprecatedPlugin\(&quot;(.+?)&quot;.*" replace="\1|" flags="gi"/>
708 </tokenfilter>
709 <striplinebreaks/>
710 <tokenfilter>
711 <replaceregex pattern="\|$" replace="" flags="gi"/>
712 </tokenfilter>
713 </filterchain>
714 </loadfile>
715 <!-- Download list of plugins -->
716 <loadresource property="plugins">
717 <url url="https://josm.openstreetmap.de/plugin"/>
718 <filterchain>
719 <linecontainsregexp negate="true">
720 <regexp pattern="^\t.*"/>
721 </linecontainsregexp>
722 <linecontainsregexp negate="true">
723 <regexp pattern="${deprecated-plugins}"/>
724 </linecontainsregexp>
725 <linecontainsregexp negate="true" unless:set="isJava10">
726 <!-- Skip javafx on Java 8/9, built for Java 10+ only -->
727 <regexp pattern="javafx.*"/>
728 </linecontainsregexp>
729 <tokenfilter>
730 <replaceregex pattern="^.*;" replace="" flags="gi"/>
731 </tokenfilter>
732 </filterchain>
733 </loadresource>
734 <!-- Delete files that are not in plugin list (like old plugins) -->
735 <loadresource property="file-list">
736 <propertyresource name="plugins"/>
737 <filterchain>
738 <tokenfilter>
739 <replaceregex pattern="^.*/(.*)$" replace="\1\|" flags=""/>
740 </tokenfilter>
741 <striplinebreaks/>
742 <tokenfilter>
743 <replaceregex pattern="\|$" replace="" flags="gi"/>
744 </tokenfilter>
745 </filterchain>
746 </loadresource>
747 <delete>
748 <restrict>
749 <fileset dir="${dir}"/>
750 <not>
751 <name regex="${file-list}"/>
752 </not>
753 </restrict>
754 </delete>
755 <!-- Download plugins -->
756 <copy todir="${dir}" flatten="true" verbose="true" failonerror="false">
757 <resourcelist>
758 <string value="${plugins}"/>
759 </resourcelist>
760 </copy>
761 <!-- Check plugins -->
762 <as:build-signatures destfile="${dir}/api.sig">
763 <path>
764 <fileset file="${dist-optimized.jar}"/>
765 <fileset file="${java.home}/lib/rt.jar" unless:set="isJava9"/>
766 <fileset file="${java.home}/lib/jce.jar" unless:set="isJava9"/>
767 <fileset file="${java.home}/lib/ext/jfxrt.jar" unless:set="isJava9"/>
768 <fileset dir="${java.home}/jmods" if:set="isJava9"/>
769 <fileset dir="/usr/share/openjfx/lib" unless:set="isJava9"/>
770 </path>
771 </as:build-signatures>
772 <as:check-signature signature="${dir}/api.sig" failonerror="false">
773 <ignore classname="afu.*"/>
774 <ignore classname="android.*"/>
775 <ignore classname="au.*"/>
776 <ignore classname="com.*"/>
777 <ignore classname="de.*"/>
778 <ignore classname="edu.*"/>
779 <ignore classname="groovy.*"/>
780 <ignore classname="io.*"/>
781 <ignore classname="it.*"/>
782 <ignore classname="java.lang.invoke.MethodHandle"/>
783 <ignore classname="javax.*"/>
784 <ignore classname="jdk.swing.interop.*"/>
785 <ignore classname="jogamp.*"/>
786 <ignore classname="junit.*"/>
787 <ignore classname="kdu_jni.*"/>
788 <ignore classname="net.*"/>
789 <ignore classname="netscape.*"/>
790 <ignore classname="nu.*"/>
791 <ignore classname="oracle.*"/>
792 <ignore classname="org.apache.*"/>
793 <ignore classname="org.bouncycastle.*"/>
794 <ignore classname="org.checkerframework.*"/>
795 <ignore classname="org.codehaus.*"/>
796 <ignore classname="org.conscrypt.*"/>
797 <ignore classname="org.dom4j.*"/>
798 <ignore classname="org.eclipse.*"/>
799 <ignore classname="org.ejml.*"/>
800 <ignore classname="org.fusesource.*"/>
801 <ignore classname="org.gdal.*"/>
802 <ignore classname="org.hibernate.*"/>
803 <ignore classname="org.hsqldb.*"/>
804 <ignore classname="org.ibex.*"/>
805 <ignore classname="org.iso_relax.*"/>
806 <ignore classname="org.jaitools.*"/>
807 <ignore classname="org.jaxen.*"/>
808 <ignore classname="org.jboss.*"/>
809 <ignore classname="org.jctools.*"/>
810 <ignore classname="org.jdom.*"/>
811 <ignore classname="org.jdom2.*"/>
812 <ignore classname="org.jfree.*"/>
813 <ignore classname="org.jgraph.*"/>
814 <ignore classname="org.joda.*"/>
815 <ignore classname="org.json.*"/>
816 <ignore classname="org.junit.*"/>
817 <ignore classname="org.jvnet.*"/>
818 <ignore classname="org.kxml2.*"/>
819 <ignore classname="org.objectweb.*"/>
820 <ignore classname="org.osgi.*"/>
821 <ignore classname="org.postgresql.*"/>
822 <ignore classname="org.python.*"/>
823 <ignore classname="org.seasar.*"/>
824 <ignore classname="org.slf4j.*"/>
825 <ignore classname="org.springframework.*"/>
826 <ignore classname="org.testng.*"/>
827 <ignore classname="org.w3c.*"/>
828 <ignore classname="org.zeromq.*"/>
829 <!-- plugins used by another ones -->
830 <ignore classname="org.openstreetmap.josm.plugins.geotools.*"/>
831 <ignore classname="org.openstreetmap.josm.plugins.jaxb.*"/>
832 <ignore classname="org.openstreetmap.josm.plugins.jna.*"/>
833 <ignore classname="org.openstreetmap.josm.plugins.jts.*"/>
834 <ignore classname="org.openstreetmap.josm.plugins.log4j.*"/>
835 <ignore classname="org.openstreetmap.josm.plugins.openjfx.*"/>
836 <ignore classname="org.openstreetmap.josm.plugins.utilsplugin2.*"/>
837 <ignore classname="sun.*"/>
838 <path path="${dir}"/>
839 </as:check-signature>
840 </target>
841
842 <target name="script-compile" depends="dist, test-compile">
843 <javac sourcepath="" srcdir="${base.dir}/scripts" failonerror="true" includes="*.java"
844 destdir="${script-build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on"
845 includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
846 <classpath>
847 <pathelement path="${build.dir}"/>
848 <pathelement path="${test.dir}/build/unit"/>
849 <pathelement path="${guava.jar}"/>
850 <pathelement path="${commons-lang3.jar}"/>
851 </classpath>
852 </javac>
853 </target>
854
855 <macrodef name="_taginfo">
856 <attribute name="type"/>
857 <attribute name="output"/>
858 <sequential>
859 <echo message="Generating Taginfo for type @{type} to @{output}"/>
860 <java classname="TagInfoExtract" failonerror="true" fork="false">
861 <sysproperty key="java.awt.headless" value="true"/>
862 <classpath>
863 <pathelement path="${dist.jar}"/>
864 <pathelement path="${script-build.dir}"/>
865 <pathelement path="${guava.jar}"/>
866 <pathelement path="${commons-lang3.jar}"/>
867 </classpath>
868 <arg value="--type"/>
869 <arg value="@{type}"/>
870 <arg value="--noexit"/>
871 <arg value="--imgurlprefix"/>
872 <arg value="http://josm.openstreetmap.de/download/taginfo/taginfo-img"/>
873 <arg value="--output"/>
874 <arg value="@{output}"/>
875 </java>
876 </sequential>
877 </macrodef>
878
879 <target name="taginfo" depends="script-compile">
880 <_taginfo type="mappaint" output="taginfo_style.json"/>
881 <_taginfo type="presets" output="taginfo_presets.json"/>
882 <_taginfo type="external_presets" output="taginfo_external_presets.json"/>
883 </target>
884
885 <target name="imageryindex" depends="init-properties,script-compile">
886 <echo message="Checking editor imagery difference"/>
887 <java classname="SyncEditorLayerIndex" failonerror="true" fork="false">
888 <classpath>
889 <pathelement path="${dist.jar}"/>
890 <pathelement path="${script-build.dir}"/>
891 <pathelement path="${guava.jar}"/>
892 <pathelement path="${commons-lang3.jar}"/>
893 </classpath>
894 <arg value="--noeli"/>
895 <arg value="-p"/>
896 <arg value="imagery_eliout.imagery.xml"/>
897 <arg value="-q"/>
898 <arg value="imagery_josmout.imagery.xml"/>
899 </java>
900 </target>
901
902 <target name="imageryindexdownload">
903 <exec append="false" executable="wget" failifexecutionfails="true">
904 <arg value="https://josm.openstreetmap.de/maps"/>
905 <arg value="-O"/>
906 <arg value="imagery_josm.imagery.xml"/>
907 <arg value="--unlink"/>
908 </exec>
909 <exec append="false" executable="wget" failifexecutionfails="true">
910 <arg value="https://josm.openstreetmap.de/wiki/ImageryCompareIgnores?format=txt"/>
911 <arg value="-O"/>
912 <arg value="imagery_josm.ignores.txt"/>
913 <arg value="--unlink"/>
914 </exec>
915 <exec append="false" executable="wget" failifexecutionfails="true">
916 <arg value="https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/imagery.geojson"/>
917 <arg value="-O"/>
918 <arg value="imagery_eli.geojson"/>
919 <arg value="--unlink"/>
920 </exec>
921 <antcall target="imageryindex"/>
922 </target>
923
924 <target name="checkstyle-compile" depends="init-properties">
925 <mkdir dir="${checkstyle-build.dir}"/>
926 <javac sourcepath="" srcdir="${checkstyle.dir}/src" failonerror="true"
927 destdir="${checkstyle-build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on"
928 includeantruntime="false" createMissingPackageInfoClass="false"
929 encoding="UTF-8" classpath="${checkstyle.dir}/checkstyle-all.jar">
930 </javac>
931 </target>
932 <target name="checkstyle-changed" depends="checkstyle-compile">
933 <exec append="false" osfamily="unix" executable="bash" failifexecutionfails="true">
934 <arg value="-c"/>
935 <arg value="svn status -q --ignore-externals src test | grep -o '\(src\|test\)/.*' | xargs java -cp '${checkstyle.dir}/checkstyle-all.jar:${checkstyle-build.dir}' com.puppycrawl.tools.checkstyle.Main -c ${checkstyle.dir}/josm_checks.xml | sed -e 's:\([^ ]*\) [^:]*/\([^:/]*.java\:[^:]*\):(\2)\1:'"/>
936 </exec>
937 <exec append="false" osfamily="windows" executable="powershell" failifexecutionfails="true">
938 <arg value="/c"/>
939 <arg value="svn status -q --ignore-externals src test | ForEach-Object {java -cp '${checkstyle.dir}/checkstyle-all.jar;${checkstyle-build.dir}' com.puppycrawl.tools.checkstyle.Main -c ${checkstyle.dir}/josm_checks.xml $_.split(' ')[7]}"/>
940 </exec>
941 </target>
942 <target name="checkstyle" depends="checkstyle-compile">
943 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
944 classpath="${checkstyle.dir}/checkstyle-all.jar:${checkstyle-build.dir}"/>
945 <checkstyle config="${checkstyle.dir}/josm_checks.xml">
946 <fileset dir="${base.dir}/src/org/openstreetmap/josm" includes="**/*.java"
947 excludes="gui/mappaint/mapcss/parsergen/*.java"/>
948 <fileset dir="${base.dir}/test" includes="**/*.java"/>
949 <fileset dir="${base.dir}/scripts" includes="**/*.java"/>
950 <formatter type="plain"/>
951 <formatter type="xml" toFile="checkstyle-josm.xml"/>
952 </checkstyle>
953 </target>
954
955 <target name="spotbugs" depends="dist">
956 <taskdef name="spotbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="${spotbugs.dir}/spotbugs-ant.jar"/>
957 <path id="spotbugs-classpath">
958 <fileset dir="${spotbugs.dir}">
959 <include name="*.jar"/>
960 </fileset>
961 </path>
962 <property name="spotbugs-classpath" refid="spotbugs-classpath"/>
963 <spotbugs output="xml"
964 outputFile="spotbugs-josm.xml"
965 classpath="${spotbugs-classpath}"
966 pluginList=""
967 excludeFilter="${spotbugs.dir}/josm-filter.xml"
968 effort="max"
969 reportLevel="low"
970 >
971 <sourcePath path="${base.dir}/src" />
972 <class location="${dist.jar}" />
973 </spotbugs>
974 </target>
975
976 <target name="pmd" depends="init-properties">
977 <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" classpath="${toString:pmd.classpath}"/>
978 <pmd shortFilenames="true" cacheLocation="${pmd.dir}/cache" encoding="UTF-8">
979 <sourceLanguage name="java" version="${java.lang.version}" />
980 <ruleset>${pmd.dir}/josm-ruleset.xml</ruleset>
981 <formatter type="text" toConsole="true" />
982 <formatter type="xml" toFile="pmd-josm.xml">
983 <param name="encoding" value="UTF-8" />
984 </formatter>
985 <fileset dir="${src.dir}">
986 <include name="org/openstreetmap/josm/**/*.java"/>
987 <exclude name="org/openstreetmap/josm/gui/mappaint/mapcss/parsergen/*.java" />
988 </fileset>
989 <fileset dir="${base.dir}/scripts" includes="**/*.java"/>
990 </pmd>
991 </target>
992
993 <target name="run" depends="dist">
994 <java jar="${dist.jar}" fork="true">
995 <arg value="--set=expert=true"/>
996 <arg value="--set=remotecontrol.enabled=true"/>
997 <arg value="--set=debug.edt-checker.enable=false"/>
998 <jvmarg value="-Djosm.home=/tmp/.josm/"/>
999 </java>
1000 </target>
1001 <!--
1002 ** Compile build script for generating projection list.
1003 -->
1004 <target name="epsg-compile" depends="init-properties">
1005 <property name="proj-classpath" location="${build.dir}"/>
1006 <mkdir dir="${proj-build.dir}"/>
1007 <javac sourcepath="" srcdir="${base.dir}/scripts" failonerror="true" includes="BuildProjectionDefinitions.java"
1008 destdir="${proj-build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on"
1009 includeantruntime="false" createMissingPackageInfoClass="false"
1010 encoding="UTF-8" classpath="${proj-classpath}">
1011 </javac>
1012 </target>
1013 <!--
1014 ** generate projection list.
1015 -->
1016 <target name="epsg" depends="epsg-compile">
1017 <touch file="${epsg.output}" mkdirs="true"/>
1018 <java classname="BuildProjectionDefinitions" failonerror="true" fork="true">
1019 <sysproperty key="java.awt.headless" value="true"/>
1020 <classpath>
1021 <pathelement path="${base.dir}"/>
1022 <pathelement path="${proj-classpath}"/>
1023 <pathelement path="${proj-build.dir}"/>
1024 </classpath>
1025 <arg value="${base.dir}"/>
1026 </java>
1027 </target>
1028 <!--
1029 ** update projection test files after an update of projection definitions
1030 -->
1031 <target name="update-proj-files" depends="test-compile">
1032 <java classname="org.openstreetmap.josm.data.projection.ProjectionRefTest" failonerror="true" fork="true">
1033 <classpath>
1034 <path refid="test.classpath"/>
1035 <pathelement path="${test.dir}/build/unit"/>
1036 </classpath>
1037 </java>
1038 <java classname="org.openstreetmap.josm.data.projection.ProjectionRegressionTest" failonerror="true" fork="true">
1039 <classpath>
1040 <path refid="test.classpath"/>
1041 <pathelement path="${test.dir}/build/unit"/>
1042 </classpath>
1043 </java>
1044 </target>
1045 <!--
1046 ** generate jdeps dependency graph
1047 -->
1048 <target name="jdeps" depends="compile">
1049 <delete dir="${modules.dir}"/>
1050 <mkdir dir="${modules.dir}"/>
1051 <!-- JOSM only -->
1052 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-actions.jar" includes="org/openstreetmap/josm/actions/**/*.class"/>
1053 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-cli.jar" includes="org/openstreetmap/josm/cli/**/*.class"/>
1054 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-command.jar" includes="org/openstreetmap/josm/command/**/*.class"/>
1055 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-data.jar" includes="org/openstreetmap/josm/data/**/*.class"/>
1056 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-gui.jar" includes="org/openstreetmap/josm/gui/**/*.class"/>
1057 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-io.jar" includes="org/openstreetmap/josm/io/**/*.class"/>
1058 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-plugins.jar" includes="org/openstreetmap/josm/plugins/**/*.class"/>
1059 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-spi.jar" includes="org/openstreetmap/josm/spi/**/*.class"/>
1060 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-tools.jar" includes="org/openstreetmap/josm/tools/**/*.class"/>
1061 <exec executable="jdeps" dir="${modules.dir}">
1062 <arg line="-f 'java.*|org.xml.*|org.w3c.*|sun.*|com.*|oauth.*|org.apache.*|org.glassfish.*|org.jdesktop.*|org.openstreetmap.gui.*'"/>
1063 <arg line="-dotoutput dots *.jar"/>
1064 </exec>
1065 <exec executable="dot" dir="${modules.dir}/dots">
1066 <arg line="-O -Tpng summary.dot"/>
1067 </exec>
1068 <move file="${modules.dir}/dots/summary.dot.png" tofile="${modules.dir}/josm-without-dependencies.png"/>
1069 <!-- Direct dependencies -->
1070 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/metadata-extractor.jar" includes="com/drew/**/*.class"/>
1071 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/svgSalamander.jar" includes="com/kitfox/**/*.class"/>
1072 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/javax-json.jar" includes="javax/**/*.class"/>
1073 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/oauth-signpost.jar" includes="oauth/**/*.class"/>
1074 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/commons-compress.jar" includes="org/apache/commons/compress/**/*.class"/>
1075 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/commons-jcs.jar" includes="org/apache/commons/jcs/**/*.class"/>
1076 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/glassfish-json.jar" includes="org/glassfish/**/*.class"/>
1077 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/jdesktop.jar" includes="org/jdesktop/**/*.class"/>
1078 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/jmapviewer.jar" includes="org/openstreetmap/gui/**/*.class"/>
1079 <exec executable="jdeps" dir="${modules.dir}">
1080 <arg line="-f 'java.*|org.xml.*|org.w3c.*|sun.*|com.sun.*|com.google.*|org.tukaani.*|org.apache.commons.logging.*'"/>
1081 <arg line="-dotoutput dots *.jar"/>
1082 </exec>
1083 <exec executable="dot" dir="${modules.dir}/dots">
1084 <arg line="-O -Tpng summary.dot"/>
1085 </exec>
1086 <move file="${modules.dir}/dots/summary.dot.png" tofile="${modules.dir}/josm-with-direct-dependencies.png"/>
1087 <!-- All dependencies -->
1088 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/commons-logging.jar" includes="org/apache/commons/logging/**/*.class"/>
1089 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/google-gdata.jar" includes="com/google/**/*.class"/>
1090 <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/tukaani-xz.jar" includes="org/tukaani/**/*.class"/>
1091 <exec executable="jdeps" dir="${modules.dir}">
1092 <arg line="-dotoutput dots *.jar"/>
1093 </exec>
1094 <exec executable="dot" dir="${modules.dir}/dots">
1095 <arg line="-O -Tpng summary.dot"/>
1096 </exec>
1097 <move file="${modules.dir}/dots/summary.dot.png" tofile="${modules.dir}/josm-with-all-dependencies.png"/>
1098 </target>
1099</project>
Note: See TracBrowser for help on using the repository browser.