[4166] | 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
|
---|
[7133] | 7 | ** This will create 'josm-custom.jar' in directory 'dist'. See also
|
---|
[7183] | 8 | ** https://josm.openstreetmap.de/wiki/DevelopersGuide/CreateBuild
|
---|
[4166] | 9 | **
|
---|
| 10 | -->
|
---|
[15977] | 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 | >
|
---|
[17338] | 18 | <target name="init-ivy" description="Initialize dependency management system Apache Ivy">
|
---|
[18587] | 19 | <property name="ivy.version" value="2.5.1"/>
|
---|
[15977] | 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"/>
|
---|
[16168] | 23 | <property name="tools.ivy" location="${tools.dir}/ivy.xml"/>
|
---|
[16183] | 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}"/>
|
---|
[15977] | 32 | </target>
|
---|
[17338] | 33 | <target name="init-properties" description="Initialize properties for the build">
|
---|
[13641] | 34 | <property environment="env"/>
|
---|
[9765] | 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. -->
|
---|
[16878] | 40 | <dirname property="base.dir" file="${ant.file.josm}"/>
|
---|
[9765] | 41 | <property name="test.dir" location="${base.dir}/test"/>
|
---|
| 42 | <property name="src.dir" location="${base.dir}/src"/>
|
---|
[18142] | 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>
|
---|
[13819] | 52 | <condition property="noJavaFX">
|
---|
| 53 | <or>
|
---|
[13642] | 54 | <isset property="env.JOSM_NOJAVAFX"/>
|
---|
[13819] | 55 | <not>
|
---|
| 56 | <available classname="javafx.scene.media.Media"/>
|
---|
| 57 | </not>
|
---|
| 58 | </or>
|
---|
[13641] | 59 | </condition>
|
---|
[16341] | 60 | <available property="svn.present" file="${base.dir}/.svn"/>
|
---|
| 61 | <available property="git.present" file="${base.dir}/.git"/>
|
---|
[9765] | 62 | <property name="build.dir" location="${base.dir}/build"/>
|
---|
| 63 | <property name="dist.dir" location="${base.dir}/dist"/>
|
---|
[16140] | 64 | <property name="resources.dir" location="${base.dir}/resources"/>
|
---|
[14136] | 65 | <property name="modules.dir" location="${dist.dir}/modules"/>
|
---|
[13209] | 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}"/>
|
---|
[9765] | 71 | <property name="mapcss.dir" location="${src.dir}/org/openstreetmap/josm/gui/mappaint/mapcss"/>
|
---|
| 72 | <property name="proj-build.dir" location="${base.dir}/build2"/>
|
---|
[15033] | 73 | <property name="script-build.dir" location="${base.dir}/build2"/>
|
---|
[16140] | 74 | <property name="epsg.output" location="${resources.dir}/data/projection/custom-epsg"/>
|
---|
[16231] | 75 | <property name="commons-lang3.jar" location="${tools.dir}/commons-lang3.jar"/>
|
---|
[12628] | 76 | <property name="dist.jar" location="${dist.dir}/josm-custom.jar"/>
|
---|
| 77 | <property name="dist-optimized.jar" location="${dist.dir}/josm-custom-optimized.jar"/>
|
---|
[16141] | 78 | <property name="dist-sources.jar" location="${dist.dir}/josm-custom-sources.jar"/>
|
---|
[18985] | 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) -->
|
---|
[19044] | 81 | <property name="java.lang.version" value="11" />
|
---|
[14052] | 82 | <property name="test.headless" value="true" />
|
---|
[19137] | 83 | <property name="noErrorProne" value="false"/>
|
---|
[13103] | 84 | <property name="jacoco.includes" value="org.openstreetmap.josm.*" />
|
---|
[13097] | 85 | <property name="jacoco.inclbootstrapclasses" value="false" />
|
---|
| 86 | <property name="jacoco.inclnolocationclasses" value="false" />
|
---|
[14309] | 87 | <property name="junit.printsummary" value="on" />
|
---|
[15032] | 88 | <property name="default-junit-includes" value="**/*Test.class"/>
|
---|
| 89 | <property name="default-junitIT-includes" value="**/*TestIT.class"/>
|
---|
[9765] | 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>
|
---|
[14172] | 96 | <!-- For Java specific stuff by version -->
|
---|
[19044] | 97 | <!-- <condition property="isJava12"><matches string="${ant.java.version}" pattern="1[2-9]|[2-9][0-9]" /></condition> -->
|
---|
[18308] | 98 | <condition property="isJava13"><matches string="${ant.java.version}" pattern="1[3-9]|[2-9][0-9]" /></condition>
|
---|
[19044] | 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> -->
|
---|
[18308] | 101 | <condition property="isJava16"><matches string="${ant.java.version}" pattern="1[6-9]|[2-9][0-9]" /></condition>
|
---|
[19044] | 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> -->
|
---|
[18308] | 104 | <condition property="isJava19"><matches string="${ant.java.version}" pattern="19|[2-9][0-9]" /></condition>
|
---|
[19044] | 105 | <!-- <condition property="isJava20"><matches string="${ant.java.version}" pattern="[2-9][0-9]" /></condition> -->
|
---|
[18308] | 106 | <condition property="isJava21"><matches string="${ant.java.version}" pattern="2[1-9]|[3-9][0-9]" /></condition>
|
---|
[18488] | 107 | <!-- Disable jacoco on Java 19+, see https://github.com/jacoco/jacoco/pull/1282 -->
|
---|
[13523] | 108 | <condition property="coverageByDefault">
|
---|
| 109 | <not>
|
---|
[18488] | 110 | <isset property="isJava19"/>
|
---|
[13523] | 111 | </not>
|
---|
| 112 | </condition>
|
---|
[19044] | 113 | <property name="java.library.dir" value="jmods" />
|
---|
[9765] | 114 | </target>
|
---|
[17338] | 115 | <target name="init-svn-revision-xml" if="svn.present" depends="init-properties"
|
---|
| 116 | description="Initialize the REVISION.XML file from SVN information">
|
---|
[16341] | 117 | <exec append="false" output="${base.dir}/REVISION.XML" executable="svn" dir="${base.dir}" resultproperty="svn.info.result">
|
---|
[4166] | 118 | <env key="LANG" value="C"/>
|
---|
| 119 | <arg value="info"/>
|
---|
| 120 | <arg value="--xml"/>
|
---|
| 121 | <arg value="."/>
|
---|
| 122 | </exec>
|
---|
[6540] | 123 | </target>
|
---|
[17338] | 124 | <target name="init-git-revision-xml" if="git.present" depends="init-properties"
|
---|
| 125 | description="Initialize the REVISION.XML file from git information">
|
---|
[16341] | 126 | <exec append="false" output="${base.dir}/REVISION.XML" executable="git" dir="${base.dir}">
|
---|
[6540] | 127 | <arg value="log"/>
|
---|
| 128 | <arg value="-1"/>
|
---|
| 129 | <arg value="--grep=git-svn-id"/>
|
---|
[6545] | 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"/>
|
---|
[6540] | 136 | <arg value="HEAD"/>
|
---|
| 137 | </exec>
|
---|
[9765] | 138 | <replaceregexp file="${base.dir}/REVISION.XML" flags="s"
|
---|
[6545] | 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>"/>
|
---|
[6540] | 141 | </target>
|
---|
[17338] | 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">
|
---|
[9765] | 144 | <xmlproperty file="${base.dir}/REVISION.XML" prefix="version" keepRoot="false" collapseAttributes="true"/>
|
---|
| 145 | <delete file="${base.dir}/REVISION.XML"/>
|
---|
[4166] | 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"/>
|
---|
[6540] | 150 | <property name="version.entry.commit.date" value="UNKNOWN"/>
|
---|
[5362] | 151 | <!-- add Build-Name: ... when making special builds, e.g. DEBIAN -->
|
---|
[16349] | 152 | <echo file="${resources.dir}/REVISION">
|
---|
[4166] | 153 | # automatically generated by JOSM build.xml - do not edit
|
---|
| 154 | Revision: ${version.entry.commit.revision}
|
---|
| 155 | Build-Date: ${build.tstamp}
|
---|
| 156 | </echo>
|
---|
[17493] | 157 | <echo unless:set="releasebuild" file="${resources.dir}/REVISION" append="true">
|
---|
| 158 | Is-Local-Build: true
|
---|
| 159 | </echo>
|
---|
[4166] | 160 | </target>
|
---|
[17338] | 161 | <target name="check-schemas" unless="check-schemas.notRequired" depends="init-properties"
|
---|
| 162 | description="Check internal XML files against their XSD">
|
---|
[16140] | 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" />
|
---|
[6208] | 165 | </schemavalidate>
|
---|
| 166 | </target>
|
---|
[17338] | 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">
|
---|
[4166] | 169 | <echo>Revision ${version.entry.commit.revision}</echo>
|
---|
[12648] | 170 | <copy file="CONTRIBUTION" todir="${build.dir}"/>
|
---|
| 171 | <copy file="README" todir="${build.dir}"/>
|
---|
| 172 | <copy file="LICENSE" todir="${build.dir}"/>
|
---|
[19040] | 173 | <copy file="gpl-2.0.txt" todir="${build.dir}"/>
|
---|
| 174 | <copy file="gpl-3.0.txt" todir="${build.dir}"/>
|
---|
[4166] | 175 | <!-- create josm-custom.jar -->
|
---|
[12628] | 176 | <delete file="${dist.jar}"/>
|
---|
| 177 | <jar destfile="${dist.jar}" basedir="${build.dir}" level="${clevel}">
|
---|
[4166] | 178 | <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
|
---|
| 179 | <manifest>
|
---|
[11926] | 180 | <attribute name="Main-class" value="org.openstreetmap.josm.gui.MainApplication"/>
|
---|
[4166] | 181 | <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
|
---|
| 182 | <attribute name="Main-Date" value="${version.entry.commit.date}"/>
|
---|
[6341] | 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"/>
|
---|
[12205] | 186 | <!-- Java 9 stuff. Entries are safely ignored by Java 8 -->
|
---|
[17971] | 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" />
|
---|
[12932] | 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" />
|
---|
[18308] | 189 | <!-- Indicate that this jar may have version specific classes. Only used in Java9+. -->
|
---|
| 190 | <attribute name="Multi-Release" value="true"/>
|
---|
[4166] | 191 | </manifest>
|
---|
| 192 | </jar>
|
---|
[18142] | 193 | <!-- Sign jar if all environment variables are set -->
|
---|
[18858] | 194 | <signjar jar="${dist.jar}" alias="${env.SIGN_ALIAS}" tsaurl="${env.SIGN_TSA}"
|
---|
[18142] | 195 | keystore="${env.SIGN_KEYSTORE}" storepass="${env.SIGN_STOREPASS}" keypass="${env.SIGN_KEYPASS}" if:set="sign.jar" />
|
---|
[4166] | 196 | </target>
|
---|
[17338] | 197 | <target name="javacc" depends="init" unless="javacc.notRequired" description="Compile the MapCSS compiler">
|
---|
[16243] | 198 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="javacc.classpath" conf="javacc"/>
|
---|
[4252] | 199 | <mkdir dir="${mapcss.dir}/parsergen"/>
|
---|
[17908] | 200 | <java classname="javacc" fork="true" dir="${mapcss.dir}" failonerror="true">
|
---|
[16908] | 201 | <classpath path="${tools.dir}/javacc"/>
|
---|
[16168] | 202 | <classpath refid="javacc.classpath"/>
|
---|
[7043] | 203 | <arg value="-DEBUG_PARSER=false"/>
|
---|
| 204 | <arg value="-DEBUG_TOKEN_MANAGER=false"/>
|
---|
[17906] | 205 | <arg value="-JDK_VERSION=1.${java.lang.version}"/>
|
---|
[6446] | 206 | <arg value="-GRAMMAR_ENCODING=UTF-8"/>
|
---|
[17908] | 207 | <arg value="-UNICODE_INPUT=true"/>
|
---|
[4257] | 208 | <arg value="${mapcss.dir}/MapCSSParser.jj"/>
|
---|
[11676] | 209 | </java>
|
---|
[4252] | 210 | </target>
|
---|
[18308] | 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"/>
|
---|
[19050] | 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"/>
|
---|
[18308] | 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>
|
---|
[18072] | 297 | <target name="compile" depends="init,javacc" unless="compile.notRequired" description="Compile JOSM">
|
---|
[16556] | 298 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="errorprone.classpath" conf="errorprone"/>
|
---|
[16571] | 299 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="errorprone_javac.classpath" conf="errorprone_javac"/>
|
---|
[8526] | 300 | <!-- JOSM -->
|
---|
[18308] | 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"/>
|
---|
[16036] | 308 | </target>
|
---|
[16349] | 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">
|
---|
[6756] | 317 | <copy todir="build" failonerror="no" includeemptydirs="no">
|
---|
[16140] | 318 | <fileset dir="${resources.dir}"/>
|
---|
[6756] | 319 | </copy>
|
---|
[4166] | 320 | </target>
|
---|
[17338] | 321 | <target name="init" depends="init-properties,resolve" description="Initialize the build">
|
---|
[5392] | 322 | <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
|
---|
| 323 | <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
|
---|
| 324 | </uptodate>
|
---|
[16345] | 325 | <uptodate property="epsg.notRequired" targetfile="${epsg.output}">
|
---|
| 326 | <srcfiles file="${base.dir}/scripts/BuildProjectionDefinitions.java"/>
|
---|
| 327 | <srcfiles dir="nodist/data/projection"/>
|
---|
| 328 | </uptodate>
|
---|
[9765] | 329 | <mkdir dir="${build.dir}"/>
|
---|
| 330 | <mkdir dir="${dist.dir}"/>
|
---|
[4166] | 331 | </target>
|
---|
[17338] | 332 | <target name="javadoc" depends="init" description="Generate API documentation from JOSM source files">
|
---|
[9765] | 333 | <javadoc destdir="javadoc"
|
---|
[7133] | 334 | sourcepath="${src.dir}"
|
---|
[15992] | 335 | classpathref="compile.path"
|
---|
[9765] | 336 | encoding="UTF-8"
|
---|
[16194] | 337 | packagenames="org.openstreetmap.josm.*"
|
---|
[9250] | 338 | excludepackagenames="org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.*"
|
---|
[5263] | 339 | windowtitle="JOSM"
|
---|
| 340 | use="true"
|
---|
[5481] | 341 | private="true"
|
---|
[5263] | 342 | linksource="true"
|
---|
| 343 | author="false">
|
---|
[19044] | 344 | <link href="https://docs.oracle.com/en/java/javase/11/docs/api" />
|
---|
[16348] | 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>
|
---|
[6955] | 349 | <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
|
---|
[15243] | 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" />
|
---|
[19044] | 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" />
|
---|
[5263] | 355 | </javadoc>
|
---|
| 356 | </target>
|
---|
[17338] | 357 | <target name="clean" depends="init-properties" description="Delete all build files">
|
---|
[9765] | 358 | <delete dir="${build.dir}"/>
|
---|
| 359 | <delete dir="${proj-build.dir}"/>
|
---|
[15033] | 360 | <delete dir="${script-build.dir}"/>
|
---|
[9765] | 361 | <delete dir="${dist.dir}"/>
|
---|
[4252] | 362 | <delete dir="${mapcss.dir}/parsergen"/>
|
---|
[8535] | 363 | <delete file="${src.dir}/org/w3/_2001/xmlschema/Adapter1.java"/>
|
---|
| 364 | <delete dir="${src.dir}/org/openstreetmap/josm/data/imagery/types"/>
|
---|
[9133] | 365 | <delete file="${epsg.output}"/>
|
---|
[13209] | 366 | <delete file="${pmd.dir}/cache"/>
|
---|
[4166] | 367 | </target>
|
---|
[7068] | 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>
|
---|
[17338] | 376 | <target name="test-init" depends="init" description="Initialize the tests">
|
---|
[6121] | 377 | <mkdir dir="${test.dir}/build"/>
|
---|
[7068] | 378 | <mkdir dir="${test.dir}/build/unit"/>
|
---|
| 379 | <mkdir dir="${test.dir}/build/functional"/>
|
---|
| 380 | <mkdir dir="${test.dir}/build/performance"/>
|
---|
[4166] | 381 | <mkdir dir="${test.dir}/report"/>
|
---|
[7068] | 382 | <init-test-preferences testfamily="unit"/>
|
---|
| 383 | <init-test-preferences testfamily="functional"/>
|
---|
| 384 | <init-test-preferences testfamily="performance"/>
|
---|
[16229] | 385 | <path id="test.classpath">
|
---|
| 386 | <path refid="test.path"/>
|
---|
| 387 | <pathelement path="${build.dir}"/>
|
---|
| 388 | <pathelement path="${resources.dir}"/>
|
---|
| 389 | </path>
|
---|
[16243] | 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"/>
|
---|
[13209] | 393 | <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="${tools.dir}/jacocoant.jar" />
|
---|
[4166] | 394 | </target>
|
---|
[17338] | 395 | <target name="test-clean" depends="init-properties" description="Delete all built test files">
|
---|
[6121] | 396 | <delete dir="${test.dir}/build"/>
|
---|
[4166] | 397 | <delete dir="${test.dir}/report"/>
|
---|
[6133] | 398 | <delete file="${test.dir}/jacoco.exec" />
|
---|
[9501] | 399 | <delete file="${test.dir}/jacocoIT.exec" />
|
---|
[10850] | 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"/>
|
---|
[4166] | 403 | </target>
|
---|
[14065] | 404 | <macrodef name="call-javac">
|
---|
[7068] | 405 | <attribute name="testfamily"/>
|
---|
| 406 | <element name="cp-elements"/>
|
---|
| 407 | <sequential>
|
---|
[14065] | 408 | <javac srcdir="${test.dir}/@{testfamily}" destdir="${test.dir}/build/@{testfamily}"
|
---|
[17906] | 409 | release="${java.lang.version}" debug="on"
|
---|
[16346] | 410 | includeantruntime="false" encoding="UTF-8">
|
---|
[14065] | 411 | <compilerarg value="-Xlint:all"/>
|
---|
[16603] | 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 -->
|
---|
[14065] | 413 | <compilerarg value="-Xlint:-serial"/>
|
---|
[7068] | 414 | <classpath>
|
---|
| 415 | <cp-elements/>
|
---|
| 416 | </classpath>
|
---|
[14065] | 417 | </javac>
|
---|
[18673] | 418 | <copy todir="${test.dir}/build/@{testfamily}/META-INF">
|
---|
| 419 | <fileset dir="${test.dir}/data/META-INF"/>
|
---|
| 420 | </copy>
|
---|
[7068] | 421 | </sequential>
|
---|
| 422 | </macrodef>
|
---|
[17338] | 423 | <target name="test-compile" depends="test-init,compile,extract-libraries,epsg,copy-resources" description="Compile all tests">
|
---|
[14065] | 424 | <call-javac testfamily="unit">
|
---|
[7068] | 425 | <cp-elements>
|
---|
| 426 | <path refid="test.classpath"/>
|
---|
| 427 | </cp-elements>
|
---|
[14065] | 428 | </call-javac>
|
---|
| 429 | <call-javac testfamily="functional">
|
---|
[7068] | 430 | <cp-elements>
|
---|
| 431 | <path refid="test.classpath"/>
|
---|
| 432 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 433 | </cp-elements>
|
---|
[14065] | 434 | </call-javac>
|
---|
| 435 | <call-javac testfamily="performance">
|
---|
[7068] | 436 | <cp-elements>
|
---|
| 437 | <path refid="test.classpath"/>
|
---|
| 438 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 439 | </cp-elements>
|
---|
[14065] | 440 | </call-javac>
|
---|
[4166] | 441 | </target>
|
---|
[7068] | 442 | <macrodef name="call-junit">
|
---|
| 443 | <attribute name="testfamily"/>
|
---|
[9501] | 444 | <attribute name="testITsuffix" default=""/>
|
---|
[13523] | 445 | <attribute name="coverage" default="${coverageByDefault}"/>
|
---|
[15032] | 446 | <attribute name="includes" default="${default-junit@{testITsuffix}-includes}"/>
|
---|
| 447 | <attribute name="excludes" default="${default-junit@{testITsuffix}-excludes}"/>
|
---|
[7068] | 448 | <sequential>
|
---|
[9501] | 449 | <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
|
---|
[16617] | 450 | <jacoco:agent destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}" includes="${jacoco.includes}" dumponexit="true"
|
---|
[18858] | 451 | inclbootstrapclasses="${jacoco.inclbootstrapclasses}" inclnolocationclasses="${jacoco.inclnolocationclasses}"
|
---|
| 452 | property="jacocoagent@{testfamily}@{testITsuffix}" if:true="@{coverage}"/>
|
---|
[16617] | 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}"/>
|
---|
[18858] | 461 | <fork>
|
---|
| 462 | <jvmarg value="${jacocoagent@{testfamily}@{testITsuffix}}" if:set="jacocoagent@{testfamily}@{testITsuffix}" />
|
---|
| 463 | <jvmarg value="-Dfile.encoding=UTF-8"/>
|
---|
[19043] | 464 | <jvmarg value="-Djava.locale.providers=SPI,CLDR" />
|
---|
[18858] | 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"/>
|
---|
[19044] | 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" />
|
---|
[18858] | 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>
|
---|
[17966] | 499 | <listener type="legacy-brief" sendSysOut="true" sendSysErr="true"/>
|
---|
[16617] | 500 | <listener type="legacy-plain" />
|
---|
| 501 | <listener type="legacy-xml" />
|
---|
| 502 | </testclasses>
|
---|
| 503 | </junitlauncher>
|
---|
[7068] | 504 | </sequential>
|
---|
| 505 | </macrodef>
|
---|
[9501] | 506 | <target name="test" depends="test-compile" unless="test.notRequired"
|
---|
[12534] | 507 | description="Run unit and functional tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
|
---|
[7068] | 508 | <call-junit testfamily="unit"/>
|
---|
| 509 | <call-junit testfamily="functional"/>
|
---|
[4166] | 510 | </target>
|
---|
[14141] | 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>
|
---|
[16051] | 528 | <target name="test-it" depends="test-compile,create-revision" unless="test-it.notRequired"
|
---|
[9501] | 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>
|
---|
[14141] | 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>
|
---|
[12534] | 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>
|
---|
[14141] | 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>
|
---|
[15703] | 550 | <target name="test-html" depends="test, test-it, test-perf" description="Generate HTML, CSV and XML test reports">
|
---|
[4166] | 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>
|
---|
[6133] | 558 | <jacoco:report>
|
---|
| 559 | <executiondata>
|
---|
[11963] | 560 | <fileset dir="${test.dir}" includes="*.exec"/>
|
---|
[6133] | 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>
|
---|
[6134] | 570 | <html destdir="${test.dir}/report/jacoco"/>
|
---|
[15703] | 571 | <xml destfile="${test.dir}/report/jacoco.xml"/>
|
---|
| 572 | <csv destfile="${test.dir}/report/jacoco.csv"/>
|
---|
[6133] | 573 | </jacoco:report>
|
---|
[4166] | 574 | </target>
|
---|
[18180] | 575 | <target name="dist-optimized" depends="dist" description="Build an optimized JOSM distribution file">
|
---|
[16243] | 576 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="proguard.classpath" conf="proguard"/>
|
---|
[16169] | 577 | <taskdef resource="proguard/ant/task.properties" classpathref="proguard.classpath"/>
|
---|
[4166] | 578 | <proguard>
|
---|
[12628] | 579 | -injars ${dist.jar}
|
---|
| 580 | -outjars ${dist-optimized.jar}
|
---|
[4166] | 581 |
|
---|
[14244] | 582 | -libraryjars ${java.home}/${java.library.dir}
|
---|
[4166] | 583 |
|
---|
[7367] | 584 | -dontoptimize
|
---|
| 585 | -dontobfuscate
|
---|
[16116] | 586 | -dontwarn org.jetbrains.annotations.**
|
---|
[4166] | 587 |
|
---|
[7367] | 588 | # These options probably are not necessary (and make processing a bit slower)
|
---|
| 589 | -dontskipnonpubliclibraryclasses
|
---|
| 590 | -dontskipnonpubliclibraryclassmembers
|
---|
[4166] | 591 |
|
---|
[7367] | 592 | -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
|
---|
| 593 | public static void main(java.lang.String[]);
|
---|
| 594 | }
|
---|
[4166] | 595 |
|
---|
[7367] | 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
|
---|
[10949] | 599 | -keep class org.openstreetmap.josm.gui.mappaint.mapcss.ConditionFactory$PseudoClasses {
|
---|
[8532] | 600 | static boolean *(org.openstreetmap.josm.gui.mappaint.Environment);
|
---|
| 601 | }
|
---|
[4166] | 602 |
|
---|
[7367] | 603 | -keepclassmembers enum * {
|
---|
| 604 | public static **[] values();
|
---|
| 605 | public static ** valueOf(java.lang.String);
|
---|
| 606 | }
|
---|
[4166] | 607 |
|
---|
[12873] | 608 | # Keep unused public classes and methods (needed for plugins)
|
---|
| 609 | -keep public class * {
|
---|
[7367] | 610 | public protected *;
|
---|
| 611 | }
|
---|
[4838] | 612 |
|
---|
[12873] | 613 | # Keep serialization code
|
---|
[10949] | 614 | -keepclassmembers class * implements java.io.Serializable {
|
---|
[16617] | 615 | static final long serialVersionUID;
|
---|
[12873] | 616 | private static final java.io.ObjectStreamField[] serialPersistentFields;
|
---|
[10949] | 617 | private void writeObject(java.io.ObjectOutputStream);
|
---|
| 618 | private void readObject(java.io.ObjectInputStream);
|
---|
[16617] | 619 | java.lang.Object writeReplace();
|
---|
[12873] | 620 | java.lang.Object readResolve();
|
---|
[10949] | 621 | }
|
---|
| 622 |
|
---|
[7367] | 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
|
---|
[6133] | 626 | </proguard>
|
---|
[4166] | 627 | </target>
|
---|
[14244] | 628 | <target name="dist-optimized-report" depends="dist-optimized">
|
---|
[10845] | 629 | <!-- generate difference report between optimized jar and normal one -->
|
---|
| 630 | <exec executable="perl" dir="${basedir}">
|
---|
[13209] | 631 | <arg value="${tools.dir}/japicc/japi-compliance-checker.pl"/>
|
---|
[10845] | 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"/>
|
---|
[12628] | 637 | <arg value="${dist.jar}"/>
|
---|
| 638 | <arg value="${dist-optimized.jar}"/>
|
---|
[10845] | 639 | </exec>
|
---|
| 640 | </target>
|
---|
[18858] | 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. -->
|
---|
[4166] | 643 | <local name="dir"/>
|
---|
| 644 | <local name="plugins"/>
|
---|
| 645 | <property name="dir" value="plugin-check"/>
|
---|
[17544] | 646 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="animal.classpath" conf="animal"/>
|
---|
[4166] | 647 | <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
|
---|
[17544] | 648 | <classpath refid="animal.classpath"/>
|
---|
[4166] | 649 | </typedef>
|
---|
[13574] | 650 | <delete dir="${dir}" failonerror="false"/>
|
---|
[4166] | 651 | <mkdir dir="${dir}"/>
|
---|
| 652 | <!-- List of deprecated plugins -->
|
---|
[7133] | 653 | <loadfile property="deprecated-plugins" srcFile="${src.dir}/org/openstreetmap/josm/plugins/PluginHandler.java">
|
---|
[4166] | 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>
|
---|
[5498] | 667 | <!-- Download list of plugins -->
|
---|
[4166] | 668 | <loadresource property="plugins">
|
---|
[18861] | 669 | <url url="https://josm.openstreetmap.de/pluginicons?minjava=8&noparams=1"/>
|
---|
[4166] | 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>
|
---|
[6133] | 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"/>
|
---|
[9765] | 689 | </tokenfilter>
|
---|
[6133] | 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 -->
|
---|
[12874] | 701 | <copy todir="${dir}" flatten="true" verbose="true" failonerror="false">
|
---|
[4166] | 702 | <resourcelist>
|
---|
| 703 | <string value="${plugins}"/>
|
---|
| 704 | </resourcelist>
|
---|
| 705 | </copy>
|
---|
| 706 | <!-- Check plugins -->
|
---|
[5498] | 707 | <as:build-signatures destfile="${dir}/api.sig">
|
---|
| 708 | <path>
|
---|
[12628] | 709 | <fileset file="${dist-optimized.jar}"/>
|
---|
[19044] | 710 | <fileset dir="${java.home}/jmods" />
|
---|
[5498] | 711 | </path>
|
---|
[6133] | 712 | </as:build-signatures>
|
---|
[12873] | 713 | <as:check-signature signature="${dir}/api.sig" failonerror="false">
|
---|
[13711] | 714 | <ignore classname="afu.*"/>
|
---|
[13921] | 715 | <ignore classname="android.*"/>
|
---|
[12873] | 716 | <ignore classname="au.*"/>
|
---|
[7367] | 717 | <ignore classname="com.*"/>
|
---|
[12873] | 718 | <ignore classname="de.*"/>
|
---|
| 719 | <ignore classname="edu.*"/>
|
---|
| 720 | <ignore classname="groovy.*"/>
|
---|
[13962] | 721 | <ignore classname="io.*"/>
|
---|
[12873] | 722 | <ignore classname="it.*"/>
|
---|
[14167] | 723 | <ignore classname="java.lang.invoke.MethodHandle"/>
|
---|
[15639] | 724 | <ignore classname="java.nio.ByteBuffer"/>
|
---|
| 725 | <ignore classname="java.nio.FloatBuffer"/>
|
---|
[15387] | 726 | <ignore classname="java.util.list.kotlin.*"/>
|
---|
[7367] | 727 | <ignore classname="javax.*"/>
|
---|
[14245] | 728 | <ignore classname="jdk.swing.interop.*"/>
|
---|
[7367] | 729 | <ignore classname="jogamp.*"/>
|
---|
| 730 | <ignore classname="junit.*"/>
|
---|
[12873] | 731 | <ignore classname="kdu_jni.*"/>
|
---|
[15387] | 732 | <ignore classname="kotlin.*"/>
|
---|
[12873] | 733 | <ignore classname="net.*"/>
|
---|
| 734 | <ignore classname="netscape.*"/>
|
---|
| 735 | <ignore classname="nu.*"/>
|
---|
| 736 | <ignore classname="oracle.*"/>
|
---|
[7367] | 737 | <ignore classname="org.apache.*"/>
|
---|
[12873] | 738 | <ignore classname="org.bouncycastle.*"/>
|
---|
[13711] | 739 | <ignore classname="org.checkerframework.*"/>
|
---|
[7367] | 740 | <ignore classname="org.codehaus.*"/>
|
---|
[13921] | 741 | <ignore classname="org.conscrypt.*"/>
|
---|
[7367] | 742 | <ignore classname="org.dom4j.*"/>
|
---|
[12873] | 743 | <ignore classname="org.eclipse.*"/>
|
---|
| 744 | <ignore classname="org.ejml.*"/>
|
---|
[14164] | 745 | <ignore classname="org.fusesource.*"/>
|
---|
[12873] | 746 | <ignore classname="org.gdal.*"/>
|
---|
[15377] | 747 | <ignore classname="org.geotools.data.h2.*"/>
|
---|
| 748 | <ignore classname="org.geotools.gce.imagemosaic.*"/>
|
---|
[12873] | 749 | <ignore classname="org.hibernate.*"/>
|
---|
[7367] | 750 | <ignore classname="org.hsqldb.*"/>
|
---|
| 751 | <ignore classname="org.ibex.*"/>
|
---|
[7934] | 752 | <ignore classname="org.iso_relax.*"/>
|
---|
[7367] | 753 | <ignore classname="org.jaitools.*"/>
|
---|
| 754 | <ignore classname="org.jaxen.*"/>
|
---|
[12873] | 755 | <ignore classname="org.jboss.*"/>
|
---|
[14164] | 756 | <ignore classname="org.jctools.*"/>
|
---|
[13575] | 757 | <ignore classname="org.jdom.*"/>
|
---|
[7367] | 758 | <ignore classname="org.jdom2.*"/>
|
---|
[12873] | 759 | <ignore classname="org.jfree.*"/>
|
---|
[4166] | 760 | <ignore classname="org.jgraph.*"/>
|
---|
[12873] | 761 | <ignore classname="org.joda.*"/>
|
---|
[14164] | 762 | <ignore classname="org.json.*"/>
|
---|
[12873] | 763 | <ignore classname="org.junit.*"/>
|
---|
| 764 | <ignore classname="org.jvnet.*"/>
|
---|
[7367] | 765 | <ignore classname="org.kxml2.*"/>
|
---|
[15639] | 766 | <ignore classname="org.locationtech.*"/>
|
---|
[15462] | 767 | <ignore classname="org.mozilla.*"/>
|
---|
[8090] | 768 | <ignore classname="org.objectweb.*"/>
|
---|
[15387] | 769 | <ignore classname="org.opentest4j.*"/>
|
---|
[12873] | 770 | <ignore classname="org.osgi.*"/>
|
---|
| 771 | <ignore classname="org.postgresql.*"/>
|
---|
[7367] | 772 | <ignore classname="org.python.*"/>
|
---|
[12875] | 773 | <ignore classname="org.seasar.*"/>
|
---|
[7367] | 774 | <ignore classname="org.slf4j.*"/>
|
---|
[12873] | 775 | <ignore classname="org.springframework.*"/>
|
---|
| 776 | <ignore classname="org.testng.*"/>
|
---|
[13113] | 777 | <ignore classname="org.w3c.*"/>
|
---|
[12873] | 778 | <ignore classname="org.zeromq.*"/>
|
---|
[15540] | 779 | <ignore classname="waffle.*"/>
|
---|
[19174] | 780 | <!-- Our installers include javafx -->
|
---|
| 781 | <ignore classname="javafx.*"/>
|
---|
[8173] | 782 | <!-- plugins used by another ones -->
|
---|
[7494] | 783 | <ignore classname="org.openstreetmap.josm.plugins.geotools.*"/>
|
---|
[14244] | 784 | <ignore classname="org.openstreetmap.josm.plugins.jaxb.*"/>
|
---|
[7934] | 785 | <ignore classname="org.openstreetmap.josm.plugins.jna.*"/>
|
---|
[7494] | 786 | <ignore classname="org.openstreetmap.josm.plugins.jts.*"/>
|
---|
| 787 | <ignore classname="org.openstreetmap.josm.plugins.log4j.*"/>
|
---|
[14244] | 788 | <ignore classname="org.openstreetmap.josm.plugins.openjfx.*"/>
|
---|
[7494] | 789 | <ignore classname="org.openstreetmap.josm.plugins.utilsplugin2.*"/>
|
---|
[12875] | 790 | <ignore classname="sun.*"/>
|
---|
[4166] | 791 | <path path="${dir}"/>
|
---|
| 792 | </as:check-signature>
|
---|
| 793 | </target>
|
---|
[4838] | 794 |
|
---|
[17338] | 795 | <target name="script-compile" depends="test-compile" description="Compile all scripts">
|
---|
[15033] | 796 | <javac sourcepath="" srcdir="${base.dir}/scripts" failonerror="true" includes="*.java"
|
---|
[17906] | 797 | destdir="${script-build.dir}" release="${java.lang.version}" debug="on"
|
---|
[16346] | 798 | includeantruntime="false" encoding="UTF-8">
|
---|
[15033] | 799 | <classpath>
|
---|
| 800 | <pathelement path="${build.dir}"/>
|
---|
| 801 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 802 | <pathelement path="${commons-lang3.jar}"/>
|
---|
| 803 | </classpath>
|
---|
[14636] | 804 | </javac>
|
---|
| 805 | </target>
|
---|
| 806 |
|
---|
[8687] | 807 | <macrodef name="_taginfo">
|
---|
| 808 | <attribute name="type"/>
|
---|
| 809 | <attribute name="output"/>
|
---|
| 810 | <sequential>
|
---|
| 811 | <echo message="Generating Taginfo for type @{type} to @{output}"/>
|
---|
[14636] | 812 | <java classname="TagInfoExtract" failonerror="true" fork="false">
|
---|
| 813 | <sysproperty key="java.awt.headless" value="true"/>
|
---|
| 814 | <classpath>
|
---|
[16126] | 815 | <pathelement path="${build.dir}"/>
|
---|
[15033] | 816 | <pathelement path="${script-build.dir}"/>
|
---|
| 817 | <pathelement path="${commons-lang3.jar}"/>
|
---|
[14636] | 818 | </classpath>
|
---|
| 819 | <arg value="--type"/>
|
---|
[8687] | 820 | <arg value="@{type}"/>
|
---|
| 821 | <arg value="--noexit"/>
|
---|
| 822 | <arg value="--imgurlprefix"/>
|
---|
[14636] | 823 | <arg value="http://josm.openstreetmap.de/download/taginfo/taginfo-img"/>
|
---|
| 824 | <arg value="--output"/>
|
---|
[8687] | 825 | <arg value="@{output}"/>
|
---|
[14636] | 826 | </java>
|
---|
[8687] | 827 | </sequential>
|
---|
| 828 | </macrodef>
|
---|
| 829 |
|
---|
[17338] | 830 | <target name="taginfo" depends="script-compile" description="Generate project files Taginfo">
|
---|
[9250] | 831 | <_taginfo type="mappaint" output="taginfo_style.json"/>
|
---|
| 832 | <_taginfo type="presets" output="taginfo_presets.json"/>
|
---|
| 833 | <_taginfo type="external_presets" output="taginfo_external_presets.json"/>
|
---|
[8687] | 834 | </target>
|
---|
| 835 |
|
---|
[17338] | 836 | <target name="imageryindex" depends="script-compile" description="Check editor imagery difference">
|
---|
[9505] | 837 | <echo message="Checking editor imagery difference"/>
|
---|
[15033] | 838 | <java classname="SyncEditorLayerIndex" failonerror="true" fork="false">
|
---|
| 839 | <classpath>
|
---|
[16126] | 840 | <pathelement path="${build.dir}"/>
|
---|
[15033] | 841 | <pathelement path="${script-build.dir}"/>
|
---|
| 842 | <pathelement path="${commons-lang3.jar}"/>
|
---|
| 843 | </classpath>
|
---|
| 844 | <arg value="--noeli"/>
|
---|
| 845 | <arg value="-p"/>
|
---|
| 846 | <arg value="imagery_eliout.imagery.xml"/>
|
---|
| 847 | <arg value="-q"/>
|
---|
| 848 | <arg value="imagery_josmout.imagery.xml"/>
|
---|
| 849 | </java>
|
---|
[9505] | 850 | </target>
|
---|
| 851 |
|
---|
[17338] | 852 | <target name="imageryindexdownload" description="Download and check editor imagery">
|
---|
[9505] | 853 | <exec append="false" executable="wget" failifexecutionfails="true">
|
---|
| 854 | <arg value="https://josm.openstreetmap.de/maps"/>
|
---|
| 855 | <arg value="-O"/>
|
---|
[11965] | 856 | <arg value="imagery_josm.imagery.xml"/>
|
---|
[9505] | 857 | <arg value="--unlink"/>
|
---|
| 858 | </exec>
|
---|
| 859 | <exec append="false" executable="wget" failifexecutionfails="true">
|
---|
[11238] | 860 | <arg value="https://josm.openstreetmap.de/wiki/ImageryCompareIgnores?format=txt"/>
|
---|
| 861 | <arg value="-O"/>
|
---|
[11965] | 862 | <arg value="imagery_josm.ignores.txt"/>
|
---|
[11238] | 863 | <arg value="--unlink"/>
|
---|
| 864 | </exec>
|
---|
| 865 | <exec append="false" executable="wget" failifexecutionfails="true">
|
---|
[16375] | 866 | <arg value="https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/imagery.geojson"/>
|
---|
[9505] | 867 | <arg value="-O"/>
|
---|
[11965] | 868 | <arg value="imagery_eli.geojson"/>
|
---|
[9505] | 869 | <arg value="--unlink"/>
|
---|
| 870 | </exec>
|
---|
[19137] | 871 | <exec append="false" executable="wget" failifexecutionfails="true">
|
---|
| 872 | <arg value="https://raw.githubusercontent.com/openstreetmap/iD/develop/data/imagery.json"/>
|
---|
| 873 | <arg value="-O"/>
|
---|
| 874 | <arg value="imagery_id.geojson"/>
|
---|
| 875 | <arg value="--unlink"/>
|
---|
| 876 | </exec>
|
---|
| 877 | <exec append="false" executable="wget" failifexecutionfails="true">
|
---|
| 878 | <arg value="https://raw.githubusercontent.com/facebook/Rapid/main/data/imagery.json"/>
|
---|
| 879 | <arg value="-O"/>
|
---|
| 880 | <arg value="imagery_rapid.geojson"/>
|
---|
| 881 | <arg value="--unlink"/>
|
---|
| 882 | </exec>
|
---|
[9505] | 883 | <antcall target="imageryindex"/>
|
---|
| 884 | </target>
|
---|
| 885 |
|
---|
[18974] | 886 | <target name="checkstyle-changed" depends="init" description="Run Checkstyle on SVN/Git-changed source files">
|
---|
[16243] | 887 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="checkstyle.classpath" conf="checkstyle"/>
|
---|
[13303] | 888 | <exec append="false" osfamily="unix" executable="bash" failifexecutionfails="true">
|
---|
| 889 | <arg value="-c"/>
|
---|
[18974] | 890 | <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:'"/>
|
---|
[13303] | 891 | </exec>
|
---|
| 892 | <exec append="false" osfamily="windows" executable="powershell" failifexecutionfails="true">
|
---|
| 893 | <arg value="/c"/>
|
---|
[18974] | 894 | <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]}"/>
|
---|
[13303] | 895 | </exec>
|
---|
| 896 | </target>
|
---|
[18974] | 897 | <target name="checkstyle" depends="init" description="Run Checkstyle on the source files">
|
---|
| 898 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="checkstyle.classpath" conf="checkstyle"/>
|
---|
[16171] | 899 | <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties">
|
---|
| 900 | <classpath refid="checkstyle.classpath"/>
|
---|
| 901 | </taskdef>
|
---|
[13209] | 902 | <checkstyle config="${checkstyle.dir}/josm_checks.xml">
|
---|
[9765] | 903 | <fileset dir="${base.dir}/src/org/openstreetmap/josm" includes="**/*.java"
|
---|
[9250] | 904 | excludes="gui/mappaint/mapcss/parsergen/*.java"/>
|
---|
[9765] | 905 | <fileset dir="${base.dir}/test" includes="**/*.java"/>
|
---|
[14637] | 906 | <fileset dir="${base.dir}/scripts" includes="**/*.java"/>
|
---|
[11681] | 907 | <formatter type="plain"/>
|
---|
[8508] | 908 | <formatter type="xml" toFile="checkstyle-josm.xml"/>
|
---|
| 909 | </checkstyle>
|
---|
| 910 | </target>
|
---|
| 911 |
|
---|
[17338] | 912 | <target name="spotbugs" depends="dist" description="Run SpotBugs on the source files">
|
---|
[16243] | 913 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="spotbugs.classpath" conf="spotbugs"/>
|
---|
[16169] | 914 | <taskdef name="spotbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpathref="spotbugs.classpath"/>
|
---|
[12801] | 915 | <spotbugs output="xml"
|
---|
| 916 | outputFile="spotbugs-josm.xml"
|
---|
[18055] | 917 | sourcePath="${src.dir}"
|
---|
[16166] | 918 | classpath="${toString:spotbugs.classpath}"
|
---|
[6133] | 919 | pluginList=""
|
---|
[13209] | 920 | excludeFilter="${spotbugs.dir}/josm-filter.xml"
|
---|
[16229] | 921 | onlyAnalyze="org.openstreetmap.josm.-"
|
---|
[6133] | 922 | effort="max"
|
---|
[10223] | 923 | reportLevel="low"
|
---|
[6133] | 924 | >
|
---|
[16229] | 925 | <class location="${dist.jar}" />
|
---|
[12801] | 926 | </spotbugs>
|
---|
[4838] | 927 | </target>
|
---|
[11713] | 928 |
|
---|
[17338] | 929 | <target name="pmd" depends="init" description="Run PMD on the source files">
|
---|
[16243] | 930 | <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="pmd.classpath" conf="pmd"/>
|
---|
[16169] | 931 | <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" classpathref="pmd.classpath"/>
|
---|
[19048] | 932 | <pmd cacheLocation="${pmd.dir}/cache" encoding="UTF-8">
|
---|
[12628] | 933 | <sourceLanguage name="java" version="${java.lang.version}" />
|
---|
[13209] | 934 | <ruleset>${pmd.dir}/josm-ruleset.xml</ruleset>
|
---|
[11713] | 935 | <formatter type="text" toConsole="true" />
|
---|
| 936 | <formatter type="xml" toFile="pmd-josm.xml">
|
---|
| 937 | <param name="encoding" value="UTF-8" />
|
---|
| 938 | </formatter>
|
---|
| 939 | <fileset dir="${src.dir}">
|
---|
| 940 | <include name="org/openstreetmap/josm/**/*.java"/>
|
---|
| 941 | <exclude name="org/openstreetmap/josm/gui/mappaint/mapcss/parsergen/*.java" />
|
---|
| 942 | </fileset>
|
---|
[14638] | 943 | <fileset dir="${base.dir}/scripts" includes="**/*.java"/>
|
---|
[19048] | 944 | <relativizePathsWith><path path="${base.dir}"/></relativizePathsWith>
|
---|
[11713] | 945 | </pmd>
|
---|
| 946 | </target>
|
---|
| 947 |
|
---|
[17338] | 948 | <target name="run" depends="dist" description="Run JOSM">
|
---|
[12628] | 949 | <java jar="${dist.jar}" fork="true">
|
---|
[5323] | 950 | <arg value="--set=expert=true"/>
|
---|
[15797] | 951 | <arg value="--set=iso.dates=true"/>
|
---|
[5323] | 952 | <jvmarg value="-Djosm.home=/tmp/.josm/"/>
|
---|
| 953 | </java>
|
---|
| 954 | </target>
|
---|
[17338] | 955 | <target name="epsg-compile" depends="init"
|
---|
| 956 | description="Compile build script for generating projection list">
|
---|
[9765] | 957 | <property name="proj-classpath" location="${build.dir}"/>
|
---|
| 958 | <mkdir dir="${proj-build.dir}"/>
|
---|
[13794] | 959 | <javac sourcepath="" srcdir="${base.dir}/scripts" failonerror="true" includes="BuildProjectionDefinitions.java"
|
---|
[17906] | 960 | destdir="${proj-build.dir}" release="${java.lang.version}" debug="on"
|
---|
[16346] | 961 | includeantruntime="false"
|
---|
[9765] | 962 | encoding="UTF-8" classpath="${proj-classpath}">
|
---|
[9133] | 963 | </javac>
|
---|
| 964 | </target>
|
---|
[17338] | 965 | <target name="epsg" unless="epsg.notRequired" depends="epsg-compile"
|
---|
| 966 | description="Generate projection list">
|
---|
[13236] | 967 | <touch file="${epsg.output}" mkdirs="true"/>
|
---|
[10259] | 968 | <java classname="BuildProjectionDefinitions" failonerror="true" fork="true">
|
---|
[9735] | 969 | <sysproperty key="java.awt.headless" value="true"/>
|
---|
[9133] | 970 | <classpath>
|
---|
[16140] | 971 | <pathelement path="${resources.dir}"/>
|
---|
[9765] | 972 | <pathelement path="${proj-classpath}"/>
|
---|
| 973 | <pathelement path="${proj-build.dir}"/>
|
---|
[9133] | 974 | </classpath>
|
---|
[9765] | 975 | <arg value="${base.dir}"/>
|
---|
[9133] | 976 | </java>
|
---|
| 977 | </target>
|
---|
[17338] | 978 | <target name="update-proj-files" depends="test-compile"
|
---|
| 979 | description="Update projection test files after an update of projection definitions">
|
---|
[14568] | 980 | <java classname="org.openstreetmap.josm.data.projection.ProjectionRefTest" failonerror="true" fork="true">
|
---|
| 981 | <classpath>
|
---|
| 982 | <path refid="test.classpath"/>
|
---|
| 983 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 984 | </classpath>
|
---|
| 985 | </java>
|
---|
| 986 | <java classname="org.openstreetmap.josm.data.projection.ProjectionRegressionTest" failonerror="true" fork="true">
|
---|
| 987 | <classpath>
|
---|
| 988 | <path refid="test.classpath"/>
|
---|
| 989 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 990 | </classpath>
|
---|
| 991 | </java>
|
---|
| 992 | </target>
|
---|
[17338] | 993 | <target name="jdeps" depends="compile" description="Generate jdeps dependency graph">
|
---|
[14136] | 994 | <delete dir="${modules.dir}"/>
|
---|
| 995 | <mkdir dir="${modules.dir}"/>
|
---|
| 996 | <!-- JOSM only -->
|
---|
| 997 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-actions.jar" includes="org/openstreetmap/josm/actions/**/*.class"/>
|
---|
| 998 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-cli.jar" includes="org/openstreetmap/josm/cli/**/*.class"/>
|
---|
| 999 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-command.jar" includes="org/openstreetmap/josm/command/**/*.class"/>
|
---|
| 1000 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-data.jar" includes="org/openstreetmap/josm/data/**/*.class"/>
|
---|
| 1001 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-gui.jar" includes="org/openstreetmap/josm/gui/**/*.class"/>
|
---|
| 1002 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-io.jar" includes="org/openstreetmap/josm/io/**/*.class"/>
|
---|
| 1003 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-plugins.jar" includes="org/openstreetmap/josm/plugins/**/*.class"/>
|
---|
| 1004 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-spi.jar" includes="org/openstreetmap/josm/spi/**/*.class"/>
|
---|
| 1005 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-tools.jar" includes="org/openstreetmap/josm/tools/**/*.class"/>
|
---|
[19146] | 1006 | <path id="jar.files">
|
---|
| 1007 | <fileset dir="${modules.dir}" includes="*.jar"/>
|
---|
| 1008 | </path>
|
---|
| 1009 | <pathconvert property="jar.files.string" refid="jar.files" pathsep=" "/>
|
---|
[14136] | 1010 | <exec executable="jdeps" dir="${modules.dir}">
|
---|
[16050] | 1011 | <arg line="-f 'java.*|org.xml.*|org.w3c.*|sun.*|com.*|oauth.*|org.apache.*|org.glassfish.*|org.openstreetmap.gui.*'"/>
|
---|
[19146] | 1012 | <arg line="-dotoutput dots" />
|
---|
| 1013 | <arg line="${jar.files.string}" />
|
---|
[14136] | 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"/>
|
---|
[19146] | 1019 |
|
---|
[14136] | 1020 | <!-- Direct dependencies -->
|
---|
[16050] | 1021 | <copy todir="${modules.dir}" flatten="true">
|
---|
| 1022 | <fileset refid="runtime.fileset" />
|
---|
| 1023 | </copy>
|
---|
[19146] | 1024 | <path id="jar-direct.files">
|
---|
| 1025 | <fileset dir="${modules.dir}" includes="*.jar"/>
|
---|
| 1026 | </path>
|
---|
| 1027 | <pathconvert property="jar-direct.files.string" refid="jar-direct.files" pathsep=" "/>
|
---|
[14136] | 1028 | <exec executable="jdeps" dir="${modules.dir}">
|
---|
[16408] | 1029 | <arg line="-f 'java.*|org.xml.*|org.w3c.*|sun.*|com.sun.*|com.google.*|org.tukaani.*'"/>
|
---|
[19146] | 1030 | <arg line="-dotoutput dots"/>
|
---|
| 1031 | <arg line="--multi-release 11"/>
|
---|
| 1032 | <arg line="${jar-direct.files.string}" />
|
---|
[14136] | 1033 | </exec>
|
---|
| 1034 | <exec executable="dot" dir="${modules.dir}/dots">
|
---|
| 1035 | <arg line="-O -Tpng summary.dot"/>
|
---|
| 1036 | </exec>
|
---|
| 1037 | <move file="${modules.dir}/dots/summary.dot.png" tofile="${modules.dir}/josm-with-direct-dependencies.png"/>
|
---|
| 1038 | <!-- All dependencies -->
|
---|
| 1039 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/google-gdata.jar" includes="com/google/**/*.class"/>
|
---|
[19146] | 1040 | <path id="jar-all.files">
|
---|
| 1041 | <fileset dir="${modules.dir}" includes="*.jar"/>
|
---|
| 1042 | </path>
|
---|
| 1043 | <pathconvert property="jar-all.files.string" refid="jar-direct.files" pathsep=" "/>
|
---|
[14136] | 1044 | <exec executable="jdeps" dir="${modules.dir}">
|
---|
[19146] | 1045 | <arg line="-dotoutput dots"/>
|
---|
| 1046 | <arg line="--multi-release 11"/>
|
---|
| 1047 | <arg line="${jar-all.files.string}" />
|
---|
[14136] | 1048 | </exec>
|
---|
| 1049 | <exec executable="dot" dir="${modules.dir}/dots">
|
---|
| 1050 | <arg line="-O -Tpng summary.dot"/>
|
---|
| 1051 | </exec>
|
---|
| 1052 | <move file="${modules.dir}/dots/summary.dot.png" tofile="${modules.dir}/josm-with-all-dependencies.png"/>
|
---|
| 1053 | </target>
|
---|
[16050] | 1054 | <target name="resolve" depends="init-ivy" unless="resolve.notRequired" description="Resolve Ivy dependencies">
|
---|
[16125] | 1055 | <ivy:settings file="${base.dir}/ivysettings.xml"/>
|
---|
[16243] | 1056 | <ivy:resolve log="download-only" file="${base.dir}/ivy.xml" keep="true"/>
|
---|
| 1057 | <ivy:cachepath log="download-only" pathid="compile.path" conf="compile"/>
|
---|
| 1058 | <ivy:cachepath log="download-only" pathid="runtime.path" conf="runtime"/>
|
---|
| 1059 | <ivy:cachefileset log="download-only" setid="runtime.fileset" conf="runtime"/>
|
---|
| 1060 | <ivy:cachepath log="download-only" pathid="test.path" conf="test"/>
|
---|
[15977] | 1061 | </target>
|
---|
[17338] | 1062 | <target name="extract-libraries" depends="resolve" description="Extract libraries to build dir">
|
---|
[16002] | 1063 | <unzip dest="${build.dir}">
|
---|
| 1064 | <fileset refid="runtime.fileset"/>
|
---|
| 1065 | <patternset>
|
---|
[16397] | 1066 | <exclude name="META-INF/*"/>
|
---|
| 1067 | <exclude name="META-INF/maven/**"/>
|
---|
[17644] | 1068 | <exclude name="META-INF/resources/webjars/tag2link/*/LICENSE"/>
|
---|
| 1069 | <exclude name="META-INF/resources/webjars/tag2link/*/README.md"/>
|
---|
| 1070 | <exclude name="META-INF/resources/webjars/tag2link/*/build.js"/>
|
---|
| 1071 | <exclude name="META-INF/resources/webjars/tag2link/*/package.json"/>
|
---|
| 1072 | <exclude name="META-INF/resources/webjars/tag2link/*/schema.json"/>
|
---|
| 1073 | <exclude name="META-INF/resources/webjars/tag2link/*/tag2link.sophox.sparql"/>
|
---|
| 1074 | <exclude name="META-INF/resources/webjars/tag2link/*/tag2link.wikidata.sparql"/>
|
---|
[16397] | 1075 | <exclude name="META-INF/versions/**"/>
|
---|
[16002] | 1076 | <exclude name="*"/>
|
---|
[16194] | 1077 | <exclude name="org/openstreetmap/gui/jmapviewer/Demo*"/>
|
---|
[16027] | 1078 | <exclude name="com/drew/imaging/FileTypeDetector*"/>
|
---|
| 1079 | <exclude name="com/drew/imaging/ImageMetadataReader*"/>
|
---|
[16025] | 1080 | <exclude name="com/drew/imaging/avi/**"/>
|
---|
| 1081 | <exclude name="com/drew/imaging/bmp/**"/>
|
---|
| 1082 | <exclude name="com/drew/imaging/eps/**"/>
|
---|
| 1083 | <exclude name="com/drew/imaging/gif/**"/>
|
---|
| 1084 | <exclude name="com/drew/imaging/heif/**"/>
|
---|
| 1085 | <exclude name="com/drew/imaging/ico/**"/>
|
---|
| 1086 | <exclude name="com/drew/imaging/mp3/**"/>
|
---|
| 1087 | <exclude name="com/drew/imaging/mp4/**"/>
|
---|
| 1088 | <exclude name="com/drew/imaging/pcx/**"/>
|
---|
| 1089 | <exclude name="com/drew/imaging/psd/**"/>
|
---|
| 1090 | <exclude name="com/drew/imaging/quicktime/**"/>
|
---|
| 1091 | <exclude name="com/drew/imaging/raf/**"/>
|
---|
| 1092 | <exclude name="com/drew/imaging/riff/**"/>
|
---|
| 1093 | <exclude name="com/drew/imaging/wav/**"/>
|
---|
| 1094 | <exclude name="com/drew/imaging/webp/**"/>
|
---|
| 1095 | <exclude name="com/drew/metadata/avi/**"/>
|
---|
| 1096 | <exclude name="com/drew/metadata/bmp/**"/>
|
---|
| 1097 | <exclude name="com/drew/metadata/eps/**"/>
|
---|
| 1098 | <exclude name="com/drew/metadata/gif/**"/>
|
---|
| 1099 | <exclude name="com/drew/metadata/heif/**"/>
|
---|
| 1100 | <exclude name="com/drew/metadata/ico/**"/>
|
---|
| 1101 | <exclude name="com/drew/metadata/mov/**"/>
|
---|
| 1102 | <exclude name="com/drew/metadata/mp3/**"/>
|
---|
| 1103 | <exclude name="com/drew/metadata/mp4/**"/>
|
---|
| 1104 | <exclude name="com/drew/metadata/pcx/**"/>
|
---|
| 1105 | <exclude name="com/drew/metadata/wav/**"/>
|
---|
| 1106 | <exclude name="com/drew/metadata/webp/**"/>
|
---|
| 1107 | <exclude name="com/drew/tools/**"/>
|
---|
[18072] | 1108 | <exclude name="com/kitfox/svg/app/ant/**"/>
|
---|
| 1109 | <exclude name="com/kitfox/svg/app/*Dialog*"/>
|
---|
| 1110 | <exclude name="com/kitfox/svg/app/*Frame*"/>
|
---|
| 1111 | <exclude name="com/kitfox/svg/app/*Player*"/>
|
---|
| 1112 | <exclude name="com/kitfox/svg/app/*Viewer*"/>
|
---|
[16026] | 1113 | <exclude name="org/apache/commons/compress/PasswordRequiredException*"/>
|
---|
[16023] | 1114 | <exclude name="org/apache/commons/compress/archivers/**"/>
|
---|
| 1115 | <exclude name="org/apache/commons/compress/changes/**"/>
|
---|
[16026] | 1116 | <exclude name="org/apache/commons/compress/compressors/bzip2/BZip2Utils*"/>
|
---|
[16023] | 1117 | <exclude name="org/apache/commons/compress/compressors/brotli/**"/>
|
---|
[16026] | 1118 | <exclude name="org/apache/commons/compress/compressors/CompressorStreamFactory*"/>
|
---|
| 1119 | <exclude name="org/apache/commons/compress/compressors/CompressorStreamProvider*"/>
|
---|
| 1120 | <exclude name="org/apache/commons/compress/compressors/CompressorException*"/>
|
---|
| 1121 | <exclude name="org/apache/commons/compress/compressors/FileNameUtil*"/>
|
---|
[16023] | 1122 | <exclude name="org/apache/commons/compress/compressors/deflate/**"/>
|
---|
| 1123 | <exclude name="org/apache/commons/compress/compressors/gzip/**"/>
|
---|
| 1124 | <exclude name="org/apache/commons/compress/compressors/lz4/**"/>
|
---|
| 1125 | <exclude name="org/apache/commons/compress/compressors/lzma/**"/>
|
---|
| 1126 | <exclude name="org/apache/commons/compress/compressors/lz77support/**"/>
|
---|
| 1127 | <exclude name="org/apache/commons/compress/compressors/pack200/**"/>
|
---|
| 1128 | <exclude name="org/apache/commons/compress/compressors/snappy/**"/>
|
---|
[16026] | 1129 | <exclude name="org/apache/commons/compress/compressors/xz/XZUtils*"/>
|
---|
[16023] | 1130 | <exclude name="org/apache/commons/compress/compressors/z/**"/>
|
---|
| 1131 | <exclude name="org/apache/commons/compress/compressors/zstandard/**"/>
|
---|
[18333] | 1132 | <exclude name="org/apache/commons/compress/java/util/jar/Pack200*"/>
|
---|
| 1133 | <exclude name="org/apache/commons/compress/harmony/pack200/**"/>
|
---|
| 1134 | <exclude name="org/apache/commons/compress/harmony/unpack200/**"/>
|
---|
[16023] | 1135 | <exclude name="org/apache/commons/compress/parallel/**"/>
|
---|
[16026] | 1136 | <exclude name="org/apache/commons/compress/utils/ArchiveUtils*"/>
|
---|
[16399] | 1137 | <exclude name="org/apache/commons/jcs3/auxiliary/disk/jdbc/**"/>
|
---|
| 1138 | <exclude name="org/apache/commons/jcs3/auxiliary/remote/http/client/**"/>
|
---|
| 1139 | <exclude name="org/apache/commons/jcs3/auxiliary/remote/http/server/RemoteHttpCacheServlet*"/>
|
---|
| 1140 | <exclude name="org/apache/commons/jcs3/auxiliary/remote/server/RemoteCacheStartupServlet*"/>
|
---|
| 1141 | <exclude name="org/apache/commons/jcs3/log/Log4j2Factory*"/>
|
---|
| 1142 | <exclude name="org/apache/commons/jcs3/log/Log4j2LogAdapter*"/>
|
---|
| 1143 | <exclude name="org/apache/commons/jcs3/utils/servlet/**"/>
|
---|
[16002] | 1144 | </patternset>
|
---|
| 1145 | </unzip>
|
---|
| 1146 | </target>
|
---|
[17338] | 1147 | <target name="sources" description="Generate jar file of JOSM source files and its dependencies" depends="init,epsg,resolve">
|
---|
[16243] | 1148 | <ivy:cachefileset log="download-only" setid="sources.fileset" conf="sources"/>
|
---|
[16141] | 1149 | <jar destfile="${dist-sources.jar}" level="${clevel}">
|
---|
| 1150 | <zipgroupfileset refid="sources.fileset"/>
|
---|
[16350] | 1151 | <fileset dir="${src.dir}"/>
|
---|
[16141] | 1152 | <fileset dir="${resources.dir}"/>
|
---|
| 1153 | </jar>
|
---|
| 1154 | </target>
|
---|
[15977] | 1155 | <target name="bootstrap-workspace" description="Copy libraries from ivy cache to workspace folders for IDE" depends="resolve">
|
---|
| 1156 | <delete dir="${lib.dir}"/>
|
---|
[16229] | 1157 | <ivy:retrieve pattern="${lib.dir}/[conf]/[artifact]-[type].[ext]" conf="compile,runtime,sources,test"/>
|
---|
[16556] | 1158 | <ivy:retrieve pattern="${lib.dir}/tools/[artifact]-[type].[ext]" conf="javacc,checkstyle,pmd,spotbugs,errorprone" file="${tools.ivy}"/>
|
---|
[15977] | 1159 | </target>
|
---|
[17338] | 1160 | <target name="ivy-report" description="Generate Ivy reports of dependency resolving" depends="resolve">
|
---|
[16243] | 1161 | <ivy:report todir="${tools.dir}/ivy-report" graph="false"/>
|
---|
| 1162 | </target>
|
---|
[16898] | 1163 | <target name="ivy-checkdepsupdate" description="Display dependency updates on the console" depends="resolve">
|
---|
[18332] | 1164 | <ivy:resolve log="quiet" file="${tools.ivy}" keep="true" conf="*"/>
|
---|
[16898] | 1165 | <ivy:checkdepsupdate/>
|
---|
[18332] | 1166 | <echo message="${line.separator}"/>
|
---|
| 1167 | <ivy:resolve log="quiet" file="${base.dir}/ivy.xml" keep="true" conf="*"/>
|
---|
| 1168 | <ivy:checkdepsupdate/>
|
---|
[16898] | 1169 | </target>
|
---|
[16229] | 1170 | <target name="api-dependency-tree" description="Displays Ivy dependency tree for JOSM API" depends="resolve">
|
---|
| 1171 | <ivy:dependencytree conf="api"/>
|
---|
| 1172 | </target>
|
---|
| 1173 | <target name="test-dependency-tree" description="Displays Ivy dependency tree for JOSM tests" depends="resolve">
|
---|
| 1174 | <ivy:dependencytree conf="test"/>
|
---|
| 1175 | </target>
|
---|
[4166] | 1176 | </project>
|
---|