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