source: josm/trunk/build.xml@ 18324

Last change on this file since 18324 was 18322, checked in by Don-vip, 2 years ago

see #20522 see #21005 - Allow security manager, otherwise it raises a warning in Java 17 and throws an error with Java 18+

See https://bugs.openjdk.java.net/browse/JDK-8271301
See https://bugs.openjdk.java.net/browse/JDK-8270380

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