[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 -->
|
---|
[12459] | 200 | <attribute name="Add-Exports" value="java.base/sun.security.util java.base/sun.security.x509 java.desktop/com.apple.eawt java.desktop/com.sun.imageio.spi javafx.graphics/com.sun.javafx.application jdk.deploy/com.sun.deploy.config" />
|
---|
[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>
|
---|
[13494] | 416 | <arg value="-html5" if:set="isJava9" />
|
---|
[11596] | 417 | <arg value="--add-exports" if:set="isJava9" />
|
---|
| 418 | <arg value="java.base/sun.security.util=ALL-UNNAMED" if:set="isJava9" />
|
---|
| 419 | <arg value="--add-exports" if:set="isJava9" />
|
---|
| 420 | <arg value="java.base/sun.security.x509=ALL-UNNAMED" if:set="isJava9" />
|
---|
[13820] | 421 | <arg value="--add-exports" if:set="isJava9" unless:set="noJavaFX" />
|
---|
| 422 | <arg value="javafx.graphics/com.sun.javafx.application=ALL-UNNAMED" if:set="isJava9" unless:set="noJavaFX" />
|
---|
[13819] | 423 | <excludepackage name="org/openstreetmap/josm/io/audio/fx" if:set="noJavaFX" />
|
---|
[5263] | 424 | </javadoc>
|
---|
| 425 | </target>
|
---|
[9765] | 426 | <target name="clean" depends="init-properties">
|
---|
| 427 | <delete dir="${build.dir}"/>
|
---|
| 428 | <delete dir="${proj-build.dir}"/>
|
---|
[15033] | 429 | <delete dir="${script-build.dir}"/>
|
---|
[12582] | 430 | <delete dir="${checkstyle-build.dir}"/>
|
---|
[9765] | 431 | <delete dir="${dist.dir}"/>
|
---|
[4252] | 432 | <delete dir="${mapcss.dir}/parsergen"/>
|
---|
[8535] | 433 | <delete file="${src.dir}/org/w3/_2001/xmlschema/Adapter1.java"/>
|
---|
| 434 | <delete dir="${src.dir}/org/openstreetmap/josm/data/imagery/types"/>
|
---|
[9133] | 435 | <delete file="${epsg.output}"/>
|
---|
[13209] | 436 | <delete file="${pmd.dir}/cache"/>
|
---|
[4166] | 437 | </target>
|
---|
[7068] | 438 | <macrodef name="init-test-preferences">
|
---|
| 439 | <attribute name="testfamily"/>
|
---|
| 440 | <sequential>
|
---|
| 441 | <copy file="${test.dir}/config/preferences.template.xml" tofile="${test.dir}/config/@{testfamily}-josm.home/preferences.xml"/>
|
---|
| 442 | <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_USERNAME@" value="${osm.username}"/>
|
---|
| 443 | <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_PASSWORD@" value="${osm.password}"/>
|
---|
| 444 | </sequential>
|
---|
| 445 | </macrodef>
|
---|
[9765] | 446 | <target name="test-init" depends="init-properties">
|
---|
[6121] | 447 | <mkdir dir="${test.dir}/build"/>
|
---|
[7068] | 448 | <mkdir dir="${test.dir}/build/unit"/>
|
---|
| 449 | <mkdir dir="${test.dir}/build/functional"/>
|
---|
| 450 | <mkdir dir="${test.dir}/build/performance"/>
|
---|
[4166] | 451 | <mkdir dir="${test.dir}/report"/>
|
---|
[7068] | 452 | <init-test-preferences testfamily="unit"/>
|
---|
| 453 | <init-test-preferences testfamily="functional"/>
|
---|
| 454 | <init-test-preferences testfamily="performance"/>
|
---|
[13209] | 455 | <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="${tools.dir}/jacocoant.jar" />
|
---|
[4166] | 456 | </target>
|
---|
[9765] | 457 | <target name="test-clean" depends="init-properties">
|
---|
[6121] | 458 | <delete dir="${test.dir}/build"/>
|
---|
[4166] | 459 | <delete dir="${test.dir}/report"/>
|
---|
[6133] | 460 | <delete file="${test.dir}/jacoco.exec" />
|
---|
[9501] | 461 | <delete file="${test.dir}/jacocoIT.exec" />
|
---|
[10850] | 462 | <delete file="${test.dir}/config/unit-josm.home" failonerror="false"/>
|
---|
| 463 | <delete file="${test.dir}/config/functional-josm.home" failonerror="false"/>
|
---|
| 464 | <delete file="${test.dir}/config/performance-josm.home" failonerror="false"/>
|
---|
[4166] | 465 | </target>
|
---|
[14065] | 466 | <macrodef name="call-javac">
|
---|
[7068] | 467 | <attribute name="testfamily"/>
|
---|
| 468 | <element name="cp-elements"/>
|
---|
| 469 | <sequential>
|
---|
[14065] | 470 | <javac srcdir="${test.dir}/@{testfamily}" destdir="${test.dir}/build/@{testfamily}"
|
---|
| 471 | target="${java.lang.version}" source="${java.lang.version}" debug="on"
|
---|
| 472 | includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
|
---|
| 473 | <compilerarg value="-Xlint:all"/>
|
---|
| 474 | <compilerarg value="-Xlint:-serial"/>
|
---|
[7068] | 475 | <classpath>
|
---|
| 476 | <cp-elements/>
|
---|
| 477 | </classpath>
|
---|
[14065] | 478 | </javac>
|
---|
[7068] | 479 | </sequential>
|
---|
| 480 | </macrodef>
|
---|
[4166] | 481 | <target name="test-compile" depends="test-init,dist">
|
---|
[14065] | 482 | <call-javac testfamily="unit">
|
---|
[7068] | 483 | <cp-elements>
|
---|
| 484 | <path refid="test.classpath"/>
|
---|
| 485 | </cp-elements>
|
---|
[14065] | 486 | </call-javac>
|
---|
| 487 | <call-javac testfamily="functional">
|
---|
[7068] | 488 | <cp-elements>
|
---|
| 489 | <path refid="test.classpath"/>
|
---|
| 490 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 491 | </cp-elements>
|
---|
[14065] | 492 | </call-javac>
|
---|
| 493 | <call-javac testfamily="performance">
|
---|
[7068] | 494 | <cp-elements>
|
---|
| 495 | <path refid="test.classpath"/>
|
---|
| 496 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 497 | </cp-elements>
|
---|
[14065] | 498 | </call-javac>
|
---|
[4166] | 499 | </target>
|
---|
[7068] | 500 | <macrodef name="call-junit">
|
---|
| 501 | <attribute name="testfamily"/>
|
---|
[9501] | 502 | <attribute name="testITsuffix" default=""/>
|
---|
[13523] | 503 | <attribute name="coverage" default="${coverageByDefault}"/>
|
---|
[15032] | 504 | <attribute name="includes" default="${default-junit@{testITsuffix}-includes}"/>
|
---|
| 505 | <attribute name="excludes" default="${default-junit@{testITsuffix}-excludes}"/>
|
---|
[7068] | 506 | <sequential>
|
---|
[9501] | 507 | <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
|
---|
[13103] | 508 | <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}" includes="${jacoco.includes}"
|
---|
| 509 | inclbootstrapclasses="${jacoco.inclbootstrapclasses}" inclnolocationclasses="${jacoco.inclnolocationclasses}">
|
---|
[14309] | 510 | <junit printsummary="${junit.printsummary}" fork="true" forkmode="once" failureproperty="test.@{testfamily}@{testITsuffix}.failed">
|
---|
[7367] | 511 | <jvmarg value="-Dfile.encoding=UTF-8"/>
|
---|
[14604] | 512 | <jvmarg value="-javaagent:${test.dir}/lib/jmockit.jar"/>
|
---|
[13505] | 513 | <jvmarg value="--add-modules" if:set="isJava9" unless:set="isJava11" />
|
---|
| 514 | <jvmarg value="java.activation,java.se.ee" if:set="isJava9" unless:set="isJava11" />
|
---|
[11006] | 515 | <jvmarg value="--add-exports" if:set="isJava9" />
|
---|
| 516 | <jvmarg value="java.base/sun.security.util=ALL-UNNAMED" if:set="isJava9" />
|
---|
[12459] | 517 | <jvmarg value="--add-exports" if:set="isJava9" />
|
---|
[11006] | 518 | <jvmarg value="java.base/sun.security.x509=ALL-UNNAMED" if:set="isJava9" />
|
---|
[13820] | 519 | <jvmarg value="--add-exports" if:set="isJava9" unless:set="noJavaFX" />
|
---|
| 520 | <jvmarg value="javafx.graphics/com.sun.javafx.application=ALL-UNNAMED" if:set="isJava9" unless:set="noJavaFX" />
|
---|
| 521 | <jvmarg value="--add-exports" if:set="isJava9" unless:set="isJava11" />
|
---|
| 522 | <jvmarg value="jdk.deploy/com.sun.deploy.config=ALL-UNNAMED" if:set="isJava9" unless:set="isJava11" />
|
---|
[12228] | 523 | <jvmarg value="--add-opens" if:set="isJava9" />
|
---|
[12230] | 524 | <jvmarg value="java.base/java.io=ALL-UNNAMED" if:set="isJava9" />
|
---|
| 525 | <jvmarg value="--add-opens" if:set="isJava9" />
|
---|
[12228] | 526 | <jvmarg value="java.base/java.lang=ALL-UNNAMED" if:set="isJava9" />
|
---|
[12230] | 527 | <jvmarg value="--add-opens" if:set="isJava9" />
|
---|
[12932] | 528 | <jvmarg value="java.base/java.nio=ALL-UNNAMED" if:set="isJava9" />
|
---|
| 529 | <jvmarg value="--add-opens" if:set="isJava9" />
|
---|
[12230] | 530 | <jvmarg value="java.base/java.text=ALL-UNNAMED" if:set="isJava9" />
|
---|
| 531 | <jvmarg value="--add-opens" if:set="isJava9" />
|
---|
| 532 | <jvmarg value="java.base/java.util=ALL-UNNAMED" if:set="isJava9" />
|
---|
| 533 | <jvmarg value="--add-opens" if:set="isJava9" />
|
---|
[14233] | 534 | <jvmarg value="java.base/jdk.internal.loader=ALL-UNNAMED" if:set="isJava9" />
|
---|
| 535 | <jvmarg value="--add-opens" if:set="isJava9" />
|
---|
[12230] | 536 | <jvmarg value="java.desktop/java.awt=ALL-UNNAMED" if:set="isJava9" />
|
---|
[7068] | 537 | <sysproperty key="josm.home" value="${test.dir}/config/@{testfamily}-josm.home"/>
|
---|
| 538 | <sysproperty key="josm.test.data" value="${test.dir}/data"/>
|
---|
[14052] | 539 | <sysproperty key="java.awt.headless" value="${test.headless}"/>
|
---|
[10529] | 540 | <sysproperty key="glass.platform" value="Monocle"/>
|
---|
| 541 | <sysproperty key="monocle.platform" value="Headless"/>
|
---|
| 542 | <sysproperty key="prism.order" value="sw"/>
|
---|
[7068] | 543 | <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
|
---|
| 544 | <classpath>
|
---|
| 545 | <path refid="test.classpath"/>
|
---|
| 546 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 547 | <pathelement path="${test.dir}/build/@{testfamily}"/>
|
---|
| 548 | <pathelement path="${test.dir}/config"/>
|
---|
| 549 | </classpath>
|
---|
| 550 | <formatter type="plain"/>
|
---|
| 551 | <formatter type="xml"/>
|
---|
| 552 | <batchtest fork="yes" todir="${test.dir}/report">
|
---|
[15032] | 553 | <fileset dir="${test.dir}/build/@{testfamily}" includes="@{includes}" excludes="@{excludes}"/>
|
---|
[7068] | 554 | </batchtest>
|
---|
| 555 | </junit>
|
---|
| 556 | </jacoco:coverage>
|
---|
| 557 | </sequential>
|
---|
| 558 | </macrodef>
|
---|
[9501] | 559 | <target name="test" depends="test-compile" unless="test.notRequired"
|
---|
[12534] | 560 | description="Run unit and functional tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
|
---|
[7068] | 561 | <call-junit testfamily="unit"/>
|
---|
| 562 | <call-junit testfamily="functional"/>
|
---|
[4166] | 563 | </target>
|
---|
[14141] | 564 | <target name="test-hardfail" depends="test" description="Run 'test' target but abort if tests failed">
|
---|
| 565 | <fail message="'test' failed">
|
---|
| 566 | <condition>
|
---|
| 567 | <or>
|
---|
| 568 | <isset property="test.unit.failed"/>
|
---|
| 569 | <isset property="test.functional.failed"/>
|
---|
| 570 | </or>
|
---|
| 571 | </condition>
|
---|
| 572 | </fail>
|
---|
| 573 | </target>
|
---|
| 574 | <target name="test-unit" depends="test-compile" unless="test-unit.notRequired"
|
---|
| 575 | description="Run unit tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
|
---|
| 576 | <call-junit testfamily="unit"/>
|
---|
| 577 | </target>
|
---|
| 578 | <target name="test-unit-hardfail" depends="test-unit" description="Run 'test-unit' target but abort if tests failed">
|
---|
| 579 | <fail message="'test-unit' failed" if="test.unit.failed"/>
|
---|
| 580 | </target>
|
---|
[9501] | 581 | <target name="test-it" depends="test-compile" unless="test-it.notRequired"
|
---|
| 582 | description="Run integration tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
|
---|
| 583 | <call-junit testfamily="unit" testITsuffix="IT"/>
|
---|
| 584 | <call-junit testfamily="functional" testITsuffix="IT"/>
|
---|
| 585 | </target>
|
---|
[14141] | 586 | <target name="test-it-hardfail" depends="test-it" description="Run 'test-it' target but abort if tests failed">
|
---|
| 587 | <fail message="'test-it' failed">
|
---|
| 588 | <condition>
|
---|
| 589 | <or>
|
---|
| 590 | <isset property="test.unitIT.failed"/>
|
---|
| 591 | <isset property="test.functionalIT.failed"/>
|
---|
| 592 | </or>
|
---|
| 593 | </condition>
|
---|
| 594 | </fail>
|
---|
| 595 | </target>
|
---|
[12534] | 596 | <target name="test-perf" depends="test-compile" unless="test-perf.notRequired"
|
---|
| 597 | description="Run performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
|
---|
| 598 | <call-junit testfamily="performance" coverage="false"/>
|
---|
| 599 | </target>
|
---|
[14141] | 600 | <target name="test-perf-hardfail" depends="test-perf" description="Run 'test-perf' target but abort if tests failed">
|
---|
| 601 | <fail message="'test-perf' failed" if="test.performance.failed"/>
|
---|
| 602 | </target>
|
---|
[12534] | 603 | <target name="test-html" depends="test, test-it, test-perf" description="Generate HTML test reports">
|
---|
[4166] | 604 | <!-- May require additional ant dependencies like ant-trax package -->
|
---|
| 605 | <junitreport todir="${test.dir}/report">
|
---|
| 606 | <fileset dir="${test.dir}/report">
|
---|
| 607 | <include name="TEST-*.xml"/>
|
---|
| 608 | </fileset>
|
---|
| 609 | <report todir="${test.dir}/report/html"/>
|
---|
| 610 | </junitreport>
|
---|
[6133] | 611 | <jacoco:report>
|
---|
| 612 | <executiondata>
|
---|
[11963] | 613 | <fileset dir="${test.dir}" includes="*.exec"/>
|
---|
[6133] | 614 | </executiondata>
|
---|
| 615 | <structure name="JOSM Test Coverage">
|
---|
| 616 | <classfiles>
|
---|
| 617 | <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
|
---|
| 618 | </classfiles>
|
---|
| 619 | <sourcefiles encoding="UTF-8">
|
---|
| 620 | <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
|
---|
| 621 | </sourcefiles>
|
---|
| 622 | </structure>
|
---|
[6134] | 623 | <html destdir="${test.dir}/report/jacoco"/>
|
---|
[6133] | 624 | </jacoco:report>
|
---|
[4166] | 625 | </target>
|
---|
[14258] | 626 | <target name="dist-optimized" depends="dist" unless="isJava11">
|
---|
[13209] | 627 | <taskdef resource="proguard/ant/task.properties" classpath="${tools.dir}/proguard.jar"/>
|
---|
[4166] | 628 | <proguard>
|
---|
[12628] | 629 | -injars ${dist.jar}
|
---|
| 630 | -outjars ${dist-optimized.jar}
|
---|
[4166] | 631 |
|
---|
[14244] | 632 | -libraryjars ${java.home}/${java.library.dir}
|
---|
[4166] | 633 |
|
---|
[7367] | 634 | -dontoptimize
|
---|
| 635 | -dontobfuscate
|
---|
[4166] | 636 |
|
---|
[7367] | 637 | # These options probably are not necessary (and make processing a bit slower)
|
---|
| 638 | -dontskipnonpubliclibraryclasses
|
---|
| 639 | -dontskipnonpubliclibraryclassmembers
|
---|
[4166] | 640 |
|
---|
[7367] | 641 | -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
|
---|
| 642 | public static void main(java.lang.String[]);
|
---|
| 643 | }
|
---|
[4166] | 644 |
|
---|
[7367] | 645 | -keep class * extends org.openstreetmap.josm.io.FileImporter
|
---|
| 646 | -keep class * extends org.openstreetmap.josm.io.FileExporter
|
---|
| 647 | -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
|
---|
[10949] | 648 | -keep class org.openstreetmap.josm.gui.mappaint.mapcss.ConditionFactory$PseudoClasses {
|
---|
[8532] | 649 | static boolean *(org.openstreetmap.josm.gui.mappaint.Environment);
|
---|
| 650 | }
|
---|
[8172] | 651 | -keep class org.apache.commons.logging.impl.*
|
---|
[4166] | 652 |
|
---|
[7367] | 653 | -keepclassmembers enum * {
|
---|
| 654 | public static **[] values();
|
---|
| 655 | public static ** valueOf(java.lang.String);
|
---|
| 656 | }
|
---|
[4166] | 657 |
|
---|
[12873] | 658 | # Keep unused public classes and methods (needed for plugins)
|
---|
| 659 | -keep public class * {
|
---|
[7367] | 660 | public protected *;
|
---|
| 661 | }
|
---|
[4838] | 662 |
|
---|
[12873] | 663 | # Keep serialization code
|
---|
[10949] | 664 | -keepclassmembers class * implements java.io.Serializable {
|
---|
[12873] | 665 | static final long serialVersionUID;
|
---|
| 666 | private static final java.io.ObjectStreamField[] serialPersistentFields;
|
---|
[10949] | 667 | private void writeObject(java.io.ObjectOutputStream);
|
---|
| 668 | private void readObject(java.io.ObjectInputStream);
|
---|
[12873] | 669 | java.lang.Object writeReplace();
|
---|
| 670 | java.lang.Object readResolve();
|
---|
[10949] | 671 | }
|
---|
| 672 |
|
---|
[7367] | 673 | # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'.
|
---|
| 674 | # This note should not be a problem as we don't use obfuscation
|
---|
| 675 | -dontnote
|
---|
[6133] | 676 | </proguard>
|
---|
[4166] | 677 | </target>
|
---|
[14244] | 678 | <target name="dist-optimized-report" depends="dist-optimized">
|
---|
[10845] | 679 | <!-- generate difference report between optimized jar and normal one -->
|
---|
| 680 | <exec executable="perl" dir="${basedir}">
|
---|
[13209] | 681 | <arg value="${tools.dir}/japicc/japi-compliance-checker.pl"/>
|
---|
[10845] | 682 | <arg value="--lib=JOSM"/>
|
---|
| 683 | <arg value="--keep-internal"/>
|
---|
| 684 | <arg value="--v1=${version.entry.commit.revision}"/>
|
---|
| 685 | <arg value="--v2=${version.entry.commit.revision}-optimized"/>
|
---|
| 686 | <arg value="--report-path=${dist.dir}/compat_report.html"/>
|
---|
[12628] | 687 | <arg value="${dist.jar}"/>
|
---|
| 688 | <arg value="${dist-optimized.jar}"/>
|
---|
[10845] | 689 | </exec>
|
---|
| 690 | </target>
|
---|
[14258] | 691 | <target name="check-plugins" depends="dist-optimized" description="Check of plugins binary compatibility" unless="isJava11">
|
---|
[4166] | 692 | <local name="dir"/>
|
---|
| 693 | <local name="plugins"/>
|
---|
| 694 | <property name="dir" value="plugin-check"/>
|
---|
| 695 | <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
|
---|
[13209] | 696 | <classpath path="${tools.dir}/animal-sniffer-ant-tasks.jar"/>
|
---|
[4166] | 697 | </typedef>
|
---|
[13574] | 698 | <delete dir="${dir}" failonerror="false"/>
|
---|
[4166] | 699 | <mkdir dir="${dir}"/>
|
---|
| 700 | <!-- List of deprecated plugins -->
|
---|
[7133] | 701 | <loadfile property="deprecated-plugins" srcFile="${src.dir}/org/openstreetmap/josm/plugins/PluginHandler.java">
|
---|
[4166] | 702 | <filterchain>
|
---|
| 703 | <linecontains>
|
---|
| 704 | <contains value="new DeprecatedPlugin("/>
|
---|
| 705 | </linecontains>
|
---|
| 706 | <tokenfilter>
|
---|
| 707 | <replaceregex pattern=".*new DeprecatedPlugin\("(.+?)".*" replace="\1|" flags="gi"/>
|
---|
| 708 | </tokenfilter>
|
---|
| 709 | <striplinebreaks/>
|
---|
| 710 | <tokenfilter>
|
---|
| 711 | <replaceregex pattern="\|$" replace="" flags="gi"/>
|
---|
| 712 | </tokenfilter>
|
---|
| 713 | </filterchain>
|
---|
| 714 | </loadfile>
|
---|
[5498] | 715 | <!-- Download list of plugins -->
|
---|
[4166] | 716 | <loadresource property="plugins">
|
---|
[6955] | 717 | <url url="https://josm.openstreetmap.de/plugin"/>
|
---|
[4166] | 718 | <filterchain>
|
---|
| 719 | <linecontainsregexp negate="true">
|
---|
| 720 | <regexp pattern="^\t.*"/>
|
---|
| 721 | </linecontainsregexp>
|
---|
| 722 | <linecontainsregexp negate="true">
|
---|
| 723 | <regexp pattern="${deprecated-plugins}"/>
|
---|
| 724 | </linecontainsregexp>
|
---|
[14244] | 725 | <linecontainsregexp negate="true" unless:set="isJava10">
|
---|
[14383] | 726 | <!-- Skip javafx on Java 8/9, built for Java 10+ only -->
|
---|
| 727 | <regexp pattern="javafx.*"/>
|
---|
[14244] | 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"/>
|
---|
[7367] | 783 | <ignore classname="javax.*"/>
|
---|
[14245] | 784 | <ignore classname="jdk.swing.interop.*"/>
|
---|
[7367] | 785 | <ignore classname="jogamp.*"/>
|
---|
| 786 | <ignore classname="junit.*"/>
|
---|
[12873] | 787 | <ignore classname="kdu_jni.*"/>
|
---|
| 788 | <ignore classname="net.*"/>
|
---|
| 789 | <ignore classname="netscape.*"/>
|
---|
| 790 | <ignore classname="nu.*"/>
|
---|
| 791 | <ignore classname="oracle.*"/>
|
---|
[7367] | 792 | <ignore classname="org.apache.*"/>
|
---|
[12873] | 793 | <ignore classname="org.bouncycastle.*"/>
|
---|
[13711] | 794 | <ignore classname="org.checkerframework.*"/>
|
---|
[7367] | 795 | <ignore classname="org.codehaus.*"/>
|
---|
[13921] | 796 | <ignore classname="org.conscrypt.*"/>
|
---|
[7367] | 797 | <ignore classname="org.dom4j.*"/>
|
---|
[12873] | 798 | <ignore classname="org.eclipse.*"/>
|
---|
| 799 | <ignore classname="org.ejml.*"/>
|
---|
[14164] | 800 | <ignore classname="org.fusesource.*"/>
|
---|
[12873] | 801 | <ignore classname="org.gdal.*"/>
|
---|
| 802 | <ignore classname="org.hibernate.*"/>
|
---|
[7367] | 803 | <ignore classname="org.hsqldb.*"/>
|
---|
| 804 | <ignore classname="org.ibex.*"/>
|
---|
[7934] | 805 | <ignore classname="org.iso_relax.*"/>
|
---|
[7367] | 806 | <ignore classname="org.jaitools.*"/>
|
---|
| 807 | <ignore classname="org.jaxen.*"/>
|
---|
[12873] | 808 | <ignore classname="org.jboss.*"/>
|
---|
[14164] | 809 | <ignore classname="org.jctools.*"/>
|
---|
[13575] | 810 | <ignore classname="org.jdom.*"/>
|
---|
[7367] | 811 | <ignore classname="org.jdom2.*"/>
|
---|
[12873] | 812 | <ignore classname="org.jfree.*"/>
|
---|
[4166] | 813 | <ignore classname="org.jgraph.*"/>
|
---|
[12873] | 814 | <ignore classname="org.joda.*"/>
|
---|
[14164] | 815 | <ignore classname="org.json.*"/>
|
---|
[12873] | 816 | <ignore classname="org.junit.*"/>
|
---|
| 817 | <ignore classname="org.jvnet.*"/>
|
---|
[7367] | 818 | <ignore classname="org.kxml2.*"/>
|
---|
[8090] | 819 | <ignore classname="org.objectweb.*"/>
|
---|
[12873] | 820 | <ignore classname="org.osgi.*"/>
|
---|
| 821 | <ignore classname="org.postgresql.*"/>
|
---|
[7367] | 822 | <ignore classname="org.python.*"/>
|
---|
[12875] | 823 | <ignore classname="org.seasar.*"/>
|
---|
[7367] | 824 | <ignore classname="org.slf4j.*"/>
|
---|
[12873] | 825 | <ignore classname="org.springframework.*"/>
|
---|
| 826 | <ignore classname="org.testng.*"/>
|
---|
[13113] | 827 | <ignore classname="org.w3c.*"/>
|
---|
[12873] | 828 | <ignore classname="org.zeromq.*"/>
|
---|
[8173] | 829 | <!-- plugins used by another ones -->
|
---|
[7494] | 830 | <ignore classname="org.openstreetmap.josm.plugins.geotools.*"/>
|
---|
[14244] | 831 | <ignore classname="org.openstreetmap.josm.plugins.jaxb.*"/>
|
---|
[7934] | 832 | <ignore classname="org.openstreetmap.josm.plugins.jna.*"/>
|
---|
[7494] | 833 | <ignore classname="org.openstreetmap.josm.plugins.jts.*"/>
|
---|
| 834 | <ignore classname="org.openstreetmap.josm.plugins.log4j.*"/>
|
---|
[14244] | 835 | <ignore classname="org.openstreetmap.josm.plugins.openjfx.*"/>
|
---|
[7494] | 836 | <ignore classname="org.openstreetmap.josm.plugins.utilsplugin2.*"/>
|
---|
[12875] | 837 | <ignore classname="sun.*"/>
|
---|
[4166] | 838 | <path path="${dir}"/>
|
---|
| 839 | </as:check-signature>
|
---|
| 840 | </target>
|
---|
[4838] | 841 |
|
---|
[15033] | 842 | <target name="script-compile" depends="dist, test-compile">
|
---|
| 843 | <javac sourcepath="" srcdir="${base.dir}/scripts" failonerror="true" includes="*.java"
|
---|
| 844 | destdir="${script-build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on"
|
---|
| 845 | includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
|
---|
| 846 | <classpath>
|
---|
| 847 | <pathelement path="${build.dir}"/>
|
---|
| 848 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 849 | <pathelement path="${guava.jar}"/>
|
---|
| 850 | <pathelement path="${commons-lang3.jar}"/>
|
---|
| 851 | </classpath>
|
---|
[14636] | 852 | </javac>
|
---|
| 853 | </target>
|
---|
| 854 |
|
---|
[8687] | 855 | <macrodef name="_taginfo">
|
---|
| 856 | <attribute name="type"/>
|
---|
| 857 | <attribute name="output"/>
|
---|
| 858 | <sequential>
|
---|
| 859 | <echo message="Generating Taginfo for type @{type} to @{output}"/>
|
---|
[14636] | 860 | <java classname="TagInfoExtract" failonerror="true" fork="false">
|
---|
| 861 | <sysproperty key="java.awt.headless" value="true"/>
|
---|
| 862 | <classpath>
|
---|
| 863 | <pathelement path="${dist.jar}"/>
|
---|
[15033] | 864 | <pathelement path="${script-build.dir}"/>
|
---|
| 865 | <pathelement path="${guava.jar}"/>
|
---|
| 866 | <pathelement path="${commons-lang3.jar}"/>
|
---|
[14636] | 867 | </classpath>
|
---|
| 868 | <arg value="--type"/>
|
---|
[8687] | 869 | <arg value="@{type}"/>
|
---|
| 870 | <arg value="--noexit"/>
|
---|
| 871 | <arg value="--imgurlprefix"/>
|
---|
[14636] | 872 | <arg value="http://josm.openstreetmap.de/download/taginfo/taginfo-img"/>
|
---|
| 873 | <arg value="--output"/>
|
---|
[8687] | 874 | <arg value="@{output}"/>
|
---|
[14636] | 875 | </java>
|
---|
[8687] | 876 | </sequential>
|
---|
| 877 | </macrodef>
|
---|
| 878 |
|
---|
[15033] | 879 | <target name="taginfo" depends="script-compile">
|
---|
[9250] | 880 | <_taginfo type="mappaint" output="taginfo_style.json"/>
|
---|
| 881 | <_taginfo type="presets" output="taginfo_presets.json"/>
|
---|
| 882 | <_taginfo type="external_presets" output="taginfo_external_presets.json"/>
|
---|
[8687] | 883 | </target>
|
---|
| 884 |
|
---|
[15033] | 885 | <target name="imageryindex" depends="init-properties,script-compile">
|
---|
[9505] | 886 | <echo message="Checking editor imagery difference"/>
|
---|
[15033] | 887 | <java classname="SyncEditorLayerIndex" failonerror="true" fork="false">
|
---|
| 888 | <classpath>
|
---|
| 889 | <pathelement path="${dist.jar}"/>
|
---|
| 890 | <pathelement path="${script-build.dir}"/>
|
---|
| 891 | <pathelement path="${guava.jar}"/>
|
---|
| 892 | <pathelement path="${commons-lang3.jar}"/>
|
---|
| 893 | </classpath>
|
---|
| 894 | <arg value="--noeli"/>
|
---|
| 895 | <arg value="-p"/>
|
---|
| 896 | <arg value="imagery_eliout.imagery.xml"/>
|
---|
| 897 | <arg value="-q"/>
|
---|
| 898 | <arg value="imagery_josmout.imagery.xml"/>
|
---|
| 899 | </java>
|
---|
[9505] | 900 | </target>
|
---|
| 901 |
|
---|
| 902 | <target name="imageryindexdownload">
|
---|
| 903 | <exec append="false" executable="wget" failifexecutionfails="true">
|
---|
| 904 | <arg value="https://josm.openstreetmap.de/maps"/>
|
---|
| 905 | <arg value="-O"/>
|
---|
[11965] | 906 | <arg value="imagery_josm.imagery.xml"/>
|
---|
[9505] | 907 | <arg value="--unlink"/>
|
---|
| 908 | </exec>
|
---|
| 909 | <exec append="false" executable="wget" failifexecutionfails="true">
|
---|
[11238] | 910 | <arg value="https://josm.openstreetmap.de/wiki/ImageryCompareIgnores?format=txt"/>
|
---|
| 911 | <arg value="-O"/>
|
---|
[11965] | 912 | <arg value="imagery_josm.ignores.txt"/>
|
---|
[11238] | 913 | <arg value="--unlink"/>
|
---|
| 914 | </exec>
|
---|
| 915 | <exec append="false" executable="wget" failifexecutionfails="true">
|
---|
[11857] | 916 | <arg value="https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/imagery.geojson"/>
|
---|
[9505] | 917 | <arg value="-O"/>
|
---|
[11965] | 918 | <arg value="imagery_eli.geojson"/>
|
---|
[9505] | 919 | <arg value="--unlink"/>
|
---|
| 920 | </exec>
|
---|
| 921 | <antcall target="imageryindex"/>
|
---|
| 922 | </target>
|
---|
| 923 |
|
---|
[12582] | 924 | <target name="checkstyle-compile" depends="init-properties">
|
---|
| 925 | <mkdir dir="${checkstyle-build.dir}"/>
|
---|
[13209] | 926 | <javac sourcepath="" srcdir="${checkstyle.dir}/src" failonerror="true"
|
---|
[12628] | 927 | destdir="${checkstyle-build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on"
|
---|
[12582] | 928 | includeantruntime="false" createMissingPackageInfoClass="false"
|
---|
[13209] | 929 | encoding="UTF-8" classpath="${checkstyle.dir}/checkstyle-all.jar">
|
---|
[12582] | 930 | </javac>
|
---|
| 931 | </target>
|
---|
[13303] | 932 | <target name="checkstyle-changed" depends="checkstyle-compile">
|
---|
| 933 | <exec append="false" osfamily="unix" executable="bash" failifexecutionfails="true">
|
---|
| 934 | <arg value="-c"/>
|
---|
| 935 | <arg value="svn status -q --ignore-externals src test | grep -o '\(src\|test\)/.*' | xargs java -cp '${checkstyle.dir}/checkstyle-all.jar:${checkstyle-build.dir}' com.puppycrawl.tools.checkstyle.Main -c ${checkstyle.dir}/josm_checks.xml | sed -e 's:\([^ ]*\) [^:]*/\([^:/]*.java\:[^:]*\):(\2)\1:'"/>
|
---|
| 936 | </exec>
|
---|
| 937 | <exec append="false" osfamily="windows" executable="powershell" failifexecutionfails="true">
|
---|
| 938 | <arg value="/c"/>
|
---|
| 939 | <arg value="svn status -q --ignore-externals src test | ForEach-Object {java -cp '${checkstyle.dir}/checkstyle-all.jar;${checkstyle-build.dir}' com.puppycrawl.tools.checkstyle.Main -c ${checkstyle.dir}/josm_checks.xml $_.split(' ')[7]}"/>
|
---|
| 940 | </exec>
|
---|
| 941 | </target>
|
---|
[12582] | 942 | <target name="checkstyle" depends="checkstyle-compile">
|
---|
[9765] | 943 | <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
|
---|
[13209] | 944 | classpath="${checkstyle.dir}/checkstyle-all.jar:${checkstyle-build.dir}"/>
|
---|
| 945 | <checkstyle config="${checkstyle.dir}/josm_checks.xml">
|
---|
[9765] | 946 | <fileset dir="${base.dir}/src/org/openstreetmap/josm" includes="**/*.java"
|
---|
[9250] | 947 | excludes="gui/mappaint/mapcss/parsergen/*.java"/>
|
---|
[9765] | 948 | <fileset dir="${base.dir}/test" includes="**/*.java"/>
|
---|
[14637] | 949 | <fileset dir="${base.dir}/scripts" includes="**/*.java"/>
|
---|
[11681] | 950 | <formatter type="plain"/>
|
---|
[8508] | 951 | <formatter type="xml" toFile="checkstyle-josm.xml"/>
|
---|
| 952 | </checkstyle>
|
---|
| 953 | </target>
|
---|
| 954 |
|
---|
[12801] | 955 | <target name="spotbugs" depends="dist">
|
---|
[13209] | 956 | <taskdef name="spotbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="${spotbugs.dir}/spotbugs-ant.jar"/>
|
---|
[12801] | 957 | <path id="spotbugs-classpath">
|
---|
[13209] | 958 | <fileset dir="${spotbugs.dir}">
|
---|
[4838] | 959 | <include name="*.jar"/>
|
---|
| 960 | </fileset>
|
---|
| 961 | </path>
|
---|
[12801] | 962 | <property name="spotbugs-classpath" refid="spotbugs-classpath"/>
|
---|
| 963 | <spotbugs output="xml"
|
---|
| 964 | outputFile="spotbugs-josm.xml"
|
---|
| 965 | classpath="${spotbugs-classpath}"
|
---|
[6133] | 966 | pluginList=""
|
---|
[13209] | 967 | excludeFilter="${spotbugs.dir}/josm-filter.xml"
|
---|
[6133] | 968 | effort="max"
|
---|
[10223] | 969 | reportLevel="low"
|
---|
[6133] | 970 | >
|
---|
[9765] | 971 | <sourcePath path="${base.dir}/src" />
|
---|
[12628] | 972 | <class location="${dist.jar}" />
|
---|
[12801] | 973 | </spotbugs>
|
---|
[4838] | 974 | </target>
|
---|
[11713] | 975 |
|
---|
| 976 | <target name="pmd" depends="init-properties">
|
---|
| 977 | <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" classpath="${toString:pmd.classpath}"/>
|
---|
[13209] | 978 | <pmd shortFilenames="true" cacheLocation="${pmd.dir}/cache" encoding="UTF-8">
|
---|
[12628] | 979 | <sourceLanguage name="java" version="${java.lang.version}" />
|
---|
[13209] | 980 | <ruleset>${pmd.dir}/josm-ruleset.xml</ruleset>
|
---|
[11713] | 981 | <formatter type="text" toConsole="true" />
|
---|
| 982 | <formatter type="xml" toFile="pmd-josm.xml">
|
---|
| 983 | <param name="encoding" value="UTF-8" />
|
---|
| 984 | </formatter>
|
---|
| 985 | <fileset dir="${src.dir}">
|
---|
| 986 | <include name="org/openstreetmap/josm/**/*.java"/>
|
---|
| 987 | <exclude name="org/openstreetmap/josm/gui/mappaint/mapcss/parsergen/*.java" />
|
---|
| 988 | </fileset>
|
---|
[14638] | 989 | <fileset dir="${base.dir}/scripts" includes="**/*.java"/>
|
---|
[11713] | 990 | </pmd>
|
---|
| 991 | </target>
|
---|
| 992 |
|
---|
[5323] | 993 | <target name="run" depends="dist">
|
---|
[12628] | 994 | <java jar="${dist.jar}" fork="true">
|
---|
[5323] | 995 | <arg value="--set=expert=true"/>
|
---|
| 996 | <arg value="--set=remotecontrol.enabled=true"/>
|
---|
| 997 | <arg value="--set=debug.edt-checker.enable=false"/>
|
---|
| 998 | <jvmarg value="-Djosm.home=/tmp/.josm/"/>
|
---|
| 999 | </java>
|
---|
| 1000 | </target>
|
---|
[9765] | 1001 | <!--
|
---|
| 1002 | ** Compile build script for generating projection list.
|
---|
| 1003 | -->
|
---|
[10850] | 1004 | <target name="epsg-compile" depends="init-properties">
|
---|
[9765] | 1005 | <property name="proj-classpath" location="${build.dir}"/>
|
---|
| 1006 | <mkdir dir="${proj-build.dir}"/>
|
---|
[13794] | 1007 | <javac sourcepath="" srcdir="${base.dir}/scripts" failonerror="true" includes="BuildProjectionDefinitions.java"
|
---|
[12628] | 1008 | destdir="${proj-build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on"
|
---|
[9765] | 1009 | includeantruntime="false" createMissingPackageInfoClass="false"
|
---|
| 1010 | encoding="UTF-8" classpath="${proj-classpath}">
|
---|
[9133] | 1011 | </javac>
|
---|
| 1012 | </target>
|
---|
[9765] | 1013 | <!--
|
---|
| 1014 | ** generate projection list.
|
---|
| 1015 | -->
|
---|
[9133] | 1016 | <target name="epsg" depends="epsg-compile">
|
---|
[13236] | 1017 | <touch file="${epsg.output}" mkdirs="true"/>
|
---|
[10259] | 1018 | <java classname="BuildProjectionDefinitions" failonerror="true" fork="true">
|
---|
[9735] | 1019 | <sysproperty key="java.awt.headless" value="true"/>
|
---|
[9133] | 1020 | <classpath>
|
---|
[9765] | 1021 | <pathelement path="${base.dir}"/>
|
---|
| 1022 | <pathelement path="${proj-classpath}"/>
|
---|
| 1023 | <pathelement path="${proj-build.dir}"/>
|
---|
[9133] | 1024 | </classpath>
|
---|
[9765] | 1025 | <arg value="${base.dir}"/>
|
---|
[9133] | 1026 | </java>
|
---|
| 1027 | </target>
|
---|
[14136] | 1028 | <!--
|
---|
[14568] | 1029 | ** update projection test files after an update of projection definitions
|
---|
| 1030 | -->
|
---|
| 1031 | <target name="update-proj-files" depends="test-compile">
|
---|
| 1032 | <java classname="org.openstreetmap.josm.data.projection.ProjectionRefTest" failonerror="true" fork="true">
|
---|
| 1033 | <classpath>
|
---|
| 1034 | <path refid="test.classpath"/>
|
---|
| 1035 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 1036 | </classpath>
|
---|
| 1037 | </java>
|
---|
| 1038 | <java classname="org.openstreetmap.josm.data.projection.ProjectionRegressionTest" failonerror="true" fork="true">
|
---|
| 1039 | <classpath>
|
---|
| 1040 | <path refid="test.classpath"/>
|
---|
| 1041 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 1042 | </classpath>
|
---|
| 1043 | </java>
|
---|
| 1044 | </target>
|
---|
| 1045 | <!--
|
---|
[14136] | 1046 | ** generate jdeps dependency graph
|
---|
| 1047 | -->
|
---|
| 1048 | <target name="jdeps" depends="compile">
|
---|
| 1049 | <delete dir="${modules.dir}"/>
|
---|
| 1050 | <mkdir dir="${modules.dir}"/>
|
---|
| 1051 | <!-- JOSM only -->
|
---|
| 1052 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-actions.jar" includes="org/openstreetmap/josm/actions/**/*.class"/>
|
---|
| 1053 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-cli.jar" includes="org/openstreetmap/josm/cli/**/*.class"/>
|
---|
| 1054 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-command.jar" includes="org/openstreetmap/josm/command/**/*.class"/>
|
---|
| 1055 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-data.jar" includes="org/openstreetmap/josm/data/**/*.class"/>
|
---|
| 1056 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-gui.jar" includes="org/openstreetmap/josm/gui/**/*.class"/>
|
---|
| 1057 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-io.jar" includes="org/openstreetmap/josm/io/**/*.class"/>
|
---|
| 1058 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-plugins.jar" includes="org/openstreetmap/josm/plugins/**/*.class"/>
|
---|
| 1059 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-spi.jar" includes="org/openstreetmap/josm/spi/**/*.class"/>
|
---|
| 1060 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/josm-tools.jar" includes="org/openstreetmap/josm/tools/**/*.class"/>
|
---|
| 1061 | <exec executable="jdeps" dir="${modules.dir}">
|
---|
[14417] | 1062 | <arg line="-f 'java.*|org.xml.*|org.w3c.*|sun.*|com.*|oauth.*|org.apache.*|org.glassfish.*|org.jdesktop.*|org.openstreetmap.gui.*'"/>
|
---|
[14136] | 1063 | <arg line="-dotoutput dots *.jar"/>
|
---|
| 1064 | </exec>
|
---|
| 1065 | <exec executable="dot" dir="${modules.dir}/dots">
|
---|
| 1066 | <arg line="-O -Tpng summary.dot"/>
|
---|
| 1067 | </exec>
|
---|
| 1068 | <move file="${modules.dir}/dots/summary.dot.png" tofile="${modules.dir}/josm-without-dependencies.png"/>
|
---|
| 1069 | <!-- Direct dependencies -->
|
---|
| 1070 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/metadata-extractor.jar" includes="com/drew/**/*.class"/>
|
---|
| 1071 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/svgSalamander.jar" includes="com/kitfox/**/*.class"/>
|
---|
| 1072 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/javax-json.jar" includes="javax/**/*.class"/>
|
---|
| 1073 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/oauth-signpost.jar" includes="oauth/**/*.class"/>
|
---|
| 1074 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/commons-compress.jar" includes="org/apache/commons/compress/**/*.class"/>
|
---|
| 1075 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/commons-jcs.jar" includes="org/apache/commons/jcs/**/*.class"/>
|
---|
| 1076 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/glassfish-json.jar" includes="org/glassfish/**/*.class"/>
|
---|
| 1077 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/jdesktop.jar" includes="org/jdesktop/**/*.class"/>
|
---|
| 1078 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/jmapviewer.jar" includes="org/openstreetmap/gui/**/*.class"/>
|
---|
| 1079 | <exec executable="jdeps" dir="${modules.dir}">
|
---|
| 1080 | <arg line="-f 'java.*|org.xml.*|org.w3c.*|sun.*|com.sun.*|com.google.*|org.tukaani.*|org.apache.commons.logging.*'"/>
|
---|
| 1081 | <arg line="-dotoutput dots *.jar"/>
|
---|
| 1082 | </exec>
|
---|
| 1083 | <exec executable="dot" dir="${modules.dir}/dots">
|
---|
| 1084 | <arg line="-O -Tpng summary.dot"/>
|
---|
| 1085 | </exec>
|
---|
| 1086 | <move file="${modules.dir}/dots/summary.dot.png" tofile="${modules.dir}/josm-with-direct-dependencies.png"/>
|
---|
| 1087 | <!-- All dependencies -->
|
---|
| 1088 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/commons-logging.jar" includes="org/apache/commons/logging/**/*.class"/>
|
---|
| 1089 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/google-gdata.jar" includes="com/google/**/*.class"/>
|
---|
| 1090 | <jar basedir="${build.dir}" level="${clevel}" destfile="${modules.dir}/tukaani-xz.jar" includes="org/tukaani/**/*.class"/>
|
---|
| 1091 | <exec executable="jdeps" dir="${modules.dir}">
|
---|
| 1092 | <arg line="-dotoutput dots *.jar"/>
|
---|
| 1093 | </exec>
|
---|
| 1094 | <exec executable="dot" dir="${modules.dir}/dots">
|
---|
| 1095 | <arg line="-O -Tpng summary.dot"/>
|
---|
| 1096 | </exec>
|
---|
| 1097 | <move file="${modules.dir}/dots/summary.dot.png" tofile="${modules.dir}/josm-with-all-dependencies.png"/>
|
---|
| 1098 | </target>
|
---|
[4166] | 1099 | </project>
|
---|