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