[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 | -->
|
---|
[6133] | 11 | <project xmlns:as="antlib:org.codehaus.mojo.animal_sniffer" name="josm" default="dist" basedir="." xmlns:jacoco="antlib:org.jacoco.ant">
|
---|
[4252] | 12 | <property name="test.dir" location="test"/>
|
---|
| 13 | <property name="src.dir" location="src"/>
|
---|
| 14 | <property name="build.dir" location="build"/>
|
---|
| 15 | <property name="javacc.home" location="tools"/>
|
---|
| 16 | <property name="mapcss.dir" location="${src.dir}/org/openstreetmap/josm/gui/mappaint/mapcss"/>
|
---|
[8820] | 17 | <property name="groovy.jar" location="tools/groovy-all-2.4.5.jar"/>
|
---|
[4166] | 18 | <!-- build parameter: compression level (ant -Dclevel=N)
|
---|
| 19 | N ranges from 0 (no compression) to 9 (maximum compression)
|
---|
| 20 | default: 9 -->
|
---|
| 21 | <condition property="clevel" value="${clevel}" else="9">
|
---|
| 22 | <isset property="clevel"/>
|
---|
| 23 | </condition>
|
---|
[8778] | 24 | <!-- For Java9-specific stuff -->
|
---|
| 25 | <condition property="isJava9">
|
---|
| 26 | <equals arg1="${ant.java.version}" arg2="1.9" />
|
---|
| 27 | </condition>
|
---|
[4252] | 28 |
|
---|
[4166] | 29 | <!--
|
---|
[6133] | 30 | ** Used by Eclipse ant builder for updating
|
---|
| 31 | ** the REVISION file used by JOSM
|
---|
| 32 | -->
|
---|
[4166] | 33 | <target name="create-revision-eclipse">
|
---|
| 34 | <property name="revision.dir" value="bin"/>
|
---|
| 35 | <antcall target="create-revision"/>
|
---|
| 36 | </target>
|
---|
| 37 | <!--
|
---|
[6540] | 38 | ** Initializes the REVISION.XML file from SVN information
|
---|
[6133] | 39 | -->
|
---|
[6545] | 40 | <target name="init-svn-revision-xml">
|
---|
[6585] | 41 | <exec append="false" output="REVISION.XML" executable="svn" failifexecutionfails="false" resultproperty="svn.info.result">
|
---|
[4166] | 42 | <env key="LANG" value="C"/>
|
---|
| 43 | <arg value="info"/>
|
---|
| 44 | <arg value="--xml"/>
|
---|
| 45 | <arg value="."/>
|
---|
| 46 | </exec>
|
---|
[6585] | 47 | <condition property="svn.info.success">
|
---|
| 48 | <equals arg1="${svn.info.result}" arg2="0" />
|
---|
| 49 | </condition>
|
---|
[6540] | 50 | </target>
|
---|
| 51 | <!--
|
---|
| 52 | ** Initializes the REVISION.XML file from git information
|
---|
| 53 | -->
|
---|
[6585] | 54 | <target name="init-git-revision-xml" unless="svn.info.success">
|
---|
[6545] | 55 | <exec append="false" output="REVISION.XML" executable="git" failifexecutionfails="false">
|
---|
[6540] | 56 | <arg value="log"/>
|
---|
| 57 | <arg value="-1"/>
|
---|
| 58 | <arg value="--grep=git-svn-id"/>
|
---|
[6545] | 59 | <!--
|
---|
| 60 | %B: raw body (unwrapped subject and body)
|
---|
| 61 | %n: new line
|
---|
| 62 | %ai: author date, ISO 8601 format
|
---|
| 63 | -->
|
---|
| 64 | <arg value="--pretty=format:%B%n%ai"/>
|
---|
[6540] | 65 | <arg value="HEAD"/>
|
---|
| 66 | </exec>
|
---|
[6545] | 67 | <replaceregexp file="REVISION.XML" flags="s"
|
---|
| 68 | match=".*git-svn-id: [^@]*@([0-9]+).*(\d{4}-\d{2}-\d{2}.\d{2}\:\d{2}\:\d{2}\s*[+-]\d{2}:?\d{2})\s*$"
|
---|
| 69 | replace="<info><entry><commit revision="\1"><date>\2</date></commit></entry></info>"/>
|
---|
[6540] | 70 | </target>
|
---|
| 71 | <!--
|
---|
| 72 | ** Creates the REVISION file to be included in the distribution
|
---|
| 73 | -->
|
---|
| 74 | <target name="create-revision" depends="init-svn-revision-xml, init-git-revision-xml">
|
---|
| 75 | <property name="revision.dir" value="${build.dir}"/>
|
---|
[4166] | 76 | <xmlproperty file="REVISION.XML" prefix="version" keepRoot="false" collapseAttributes="true"/>
|
---|
| 77 | <delete file="REVISION.XML"/>
|
---|
| 78 | <tstamp>
|
---|
| 79 | <format property="build.tstamp" pattern="yyyy-MM-dd HH:mm:ss"/>
|
---|
| 80 | </tstamp>
|
---|
| 81 | <property name="version.entry.commit.revision" value="UNKNOWN"/>
|
---|
[6540] | 82 | <property name="version.entry.commit.date" value="UNKNOWN"/>
|
---|
[4166] | 83 | <mkdir dir="${revision.dir}"/>
|
---|
[5362] | 84 | <!-- add Build-Name: ... when making special builds, e.g. DEBIAN -->
|
---|
[4166] | 85 | <echo file="${revision.dir}/REVISION">
|
---|
| 86 | # automatically generated by JOSM build.xml - do not edit
|
---|
| 87 | Revision: ${version.entry.commit.revision}
|
---|
| 88 | Is-Local-Build: true
|
---|
| 89 | Build-Date: ${build.tstamp}
|
---|
| 90 | </echo>
|
---|
| 91 | </target>
|
---|
[6540] | 92 | <!--
|
---|
| 93 | ** Check internal XML files against their XSD
|
---|
| 94 | -->
|
---|
[7209] | 95 | <target name="check-schemas" unless="check-schemas.notRequired">
|
---|
[6208] | 96 | <schemavalidate file="data/defaultpresets.xml" >
|
---|
| 97 | <schema namespace="http://josm.openstreetmap.de/tagging-preset-1.0" file="data/tagging-preset.xsd" />
|
---|
| 98 | </schemavalidate>
|
---|
| 99 | </target>
|
---|
[6540] | 100 | <!--
|
---|
| 101 | ** Main target that builds JOSM and checks XML against schemas
|
---|
| 102 | -->
|
---|
[6208] | 103 | <target name="dist" depends="compile,create-revision,check-schemas">
|
---|
[4166] | 104 | <echo>Revision ${version.entry.commit.revision}</echo>
|
---|
| 105 | <copy file="CONTRIBUTION" todir="build"/>
|
---|
| 106 | <copy file="README" todir="build"/>
|
---|
| 107 | <copy file="LICENSE" todir="build"/>
|
---|
| 108 | <!-- create josm-custom.jar -->
|
---|
| 109 | <delete file="dist/josm-custom.jar"/>
|
---|
| 110 | <jar destfile="dist/josm-custom.jar" basedir="build" level="${clevel}">
|
---|
| 111 | <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
|
---|
| 112 | <manifest>
|
---|
| 113 | <attribute name="Main-class" value="JOSM"/>
|
---|
| 114 | <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
|
---|
| 115 | <attribute name="Main-Date" value="${version.entry.commit.date}"/>
|
---|
[6341] | 116 | <attribute name="Permissions" value="all-permissions"/>
|
---|
| 117 | <attribute name="Codebase" value="josm.openstreetmap.de"/>
|
---|
| 118 | <attribute name="Application-Name" value="JOSM - Java OpenStreetMap Editor"/>
|
---|
[4166] | 119 | </manifest>
|
---|
| 120 | <zipfileset dir="images" prefix="images"/>
|
---|
| 121 | <zipfileset dir="data" prefix="data"/>
|
---|
| 122 | <zipfileset dir="styles" prefix="styles"/>
|
---|
[7133] | 123 | <zipfileset dir="${src.dir}/org/openstreetmap/gui/jmapviewer/images" prefix="org/openstreetmap/gui/jmapviewer/images"/>
|
---|
[4166] | 124 | </jar>
|
---|
| 125 | </target>
|
---|
[7001] | 126 | <!-- Mac OS X target -->
|
---|
| 127 | <target name="mac">
|
---|
[6217] | 128 | <!-- Using https://bitbucket.org/infinitekind/appbundler to create mac application bundle -->
|
---|
| 129 | <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="tools/appbundler-1.0ea.jar"/>
|
---|
| 130 | <!-- create MacOS X application bundle -->
|
---|
[6945] | 131 | <bundleapp outputdirectory="${bundle.outdir}" name="JOSM" displayname="JOSM" executablename="JOSM" identifier="org.openstreetmap.josm"
|
---|
[6216] | 132 | mainclassname="org.openstreetmap.josm.gui.MainApplication"
|
---|
[6217] | 133 | copyright="JOSM, and all its integral parts, are released under the GNU General Public License v2 or later"
|
---|
[6216] | 134 | applicationCategory="public.app-category.utilities"
|
---|
| 135 | shortversion="${version.entry.commit.revision} SVN"
|
---|
| 136 | version="${version.entry.commit.revision} SVN"
|
---|
| 137 | icon="macosx/JOSM.app/Contents/Resources/JOSM.icns"
|
---|
[6217] | 138 | highResolutionCapable="true">
|
---|
[6216] | 139 |
|
---|
| 140 | <arch name="x86_64"/>
|
---|
| 141 | <arch name="i386"/>
|
---|
| 142 |
|
---|
[6945] | 143 | <classpath file="${bundle.jar}"/>
|
---|
[6216] | 144 |
|
---|
[7287] | 145 | <option value="-Xmx1024m"/>
|
---|
[6216] | 146 |
|
---|
| 147 | <option value="-Xdock:icon=Contents/Resources/JOSM.icns"/>
|
---|
| 148 | <option value="-Xdock:name=JOSM"/>
|
---|
| 149 |
|
---|
| 150 | <!-- OSX specific options, optional -->
|
---|
| 151 | <option value="-Dapple.laf.useScreenMenuBar=true"/>
|
---|
| 152 | <option value="-Dcom.apple.macos.use-file-dialog-packages=true"/>
|
---|
| 153 | <option value="-Dcom.apple.macos.useScreenMenuBar=true"/>
|
---|
| 154 | <option value="-Dcom.apple.mrj.application.apple.menu.about.name=JOSM"/>
|
---|
| 155 | <option value="-Dcom.apple.smallTabs=true"/>
|
---|
| 156 | </bundleapp>
|
---|
[6217] | 157 |
|
---|
| 158 | <!-- appbundler lacks the possibility of defining our own keys or using a template, so update the .plist manually -->
|
---|
| 159 | <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask" classpath="tools/xmltask.jar"/>
|
---|
| 160 |
|
---|
[6945] | 161 | <xmltask source="${bundle.outdir}/JOSM.app/Contents/Info.plist" dest="${bundle.outdir}/JOSM.app/Contents/Info.plist" indent="false">
|
---|
[7367] | 162 | <!-- remove empty CFBundleDocumentTypes definition -->
|
---|
| 163 | <remove path="/plist/dict/key[text()='CFBundleDocumentTypes']|/plist/dict/key[text()='CFBundleDocumentTypes']/following-sibling::array[1]"/>
|
---|
[7287] | 164 | <!-- insert our own keys -->
|
---|
| 165 | <insert position="before" path="/plist/dict/key[1]" file="macosx/JOSM.app/Contents/Info.plist_template.xml" />
|
---|
[6217] | 166 | </xmltask>
|
---|
| 167 |
|
---|
[6216] | 168 | <!-- create ZIP file with MacOS X application bundle -->
|
---|
[7001] | 169 | <zip destfile="${bundle.outdir}/josm-custom-macosx.zip" update="true">
|
---|
[6945] | 170 | <zipfileset dir="." includes="CONTRIBUTION README LICENSE"/>
|
---|
| 171 | <zipfileset dir="${bundle.outdir}" includes="JOSM.app/**/*" filemode="755" />
|
---|
[6216] | 172 | </zip>
|
---|
[6217] | 173 | </target>
|
---|
[7001] | 174 | <target name="distmac" depends="dist">
|
---|
| 175 | <antcall target="mac">
|
---|
[6945] | 176 | <param name="bundle.outdir" value="dist"/>
|
---|
| 177 | <param name="bundle.jar" value="dist/josm-custom.jar"/>
|
---|
| 178 | </antcall>
|
---|
| 179 | </target>
|
---|
[7839] | 180 | <!-- Windows target -->
|
---|
| 181 | <target name="distwin" depends="dist">
|
---|
[7842] | 182 | <exec dir="windows" executable="./josm-setup-unix.sh">
|
---|
[7839] | 183 | <arg value="${version.entry.commit.revision}"/>
|
---|
| 184 | <arg value="../dist/josm-custom.jar"/>
|
---|
| 185 | </exec>
|
---|
| 186 | </target>
|
---|
[5392] | 187 | <target name="javacc" depends="init" unless="javacc.notRequired">
|
---|
[4252] | 188 | <mkdir dir="${mapcss.dir}/parsergen"/>
|
---|
[4257] | 189 | <exec append="false" executable="java" failifexecutionfails="true">
|
---|
| 190 | <arg value="-cp"/>
|
---|
| 191 | <arg value="${javacc.home}/javacc.jar"/>
|
---|
| 192 | <arg value="javacc"/>
|
---|
[7043] | 193 | <arg value="-DEBUG_PARSER=false"/>
|
---|
| 194 | <arg value="-DEBUG_TOKEN_MANAGER=false"/>
|
---|
[7001] | 195 | <arg value="-JDK_VERSION=1.7"/>
|
---|
[6446] | 196 | <arg value="-GRAMMAR_ENCODING=UTF-8"/>
|
---|
[4257] | 197 | <arg value="-OUTPUT_DIRECTORY=${mapcss.dir}/parsergen"/>
|
---|
| 198 | <arg value="${mapcss.dir}/MapCSSParser.jj"/>
|
---|
| 199 | </exec>
|
---|
[4252] | 200 | </target>
|
---|
[8526] | 201 | <target name="compile" depends="init,javacc">
|
---|
[7068] | 202 | <!-- COTS -->
|
---|
[8173] | 203 | <javac srcdir="${src.dir}" includes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**" nowarn="on" encoding="iso-8859-1"
|
---|
| 204 | destdir="build" target="1.7" source="1.7" debug="on" includeAntRuntime="false" createMissingPackageInfoClass="false">
|
---|
[7019] | 205 | <!-- get rid of "internal proprietary API" warning -->
|
---|
[7068] | 206 | <compilerarg value="-XDignore.symbol.file"/>
|
---|
[8173] | 207 | <exclude name="org/apache/commons/compress/compressors/lzma/**"/>
|
---|
| 208 | <exclude name="org/apache/commons/compress/compressors/xz/**"/>
|
---|
| 209 | <exclude name="org/apache/commons/compress/compressors/CompressorStreamFactory.java"/>
|
---|
| 210 | <exclude name="org/apache/commons/compress/compressors/deflate/**"/>
|
---|
| 211 | <exclude name="org/apache/commons/compress/compressors/gzip/**"/>
|
---|
| 212 | <exclude name="org/apache/commons/compress/compressors/lzw/**"/>
|
---|
| 213 | <exclude name="org/apache/commons/compress/compressors/pack200/**"/>
|
---|
| 214 | <exclude name="org/apache/commons/compress/compressors/snappy/**"/>
|
---|
| 215 | <exclude name="org/apache/commons/compress/compressors/z/**"/>
|
---|
| 216 | <exclude name="org/apache/commons/jcs/admin/**"/>
|
---|
| 217 | <exclude name="org/apache/commons/jcs/auxiliary/disk/jdbc/**"/>
|
---|
| 218 | <exclude name="org/apache/commons/jcs/auxiliary/remote/**"/>
|
---|
| 219 | <exclude name="org/apache/commons/jcs/utils/servlet/**"/>
|
---|
| 220 | <exclude name="org/apache/commons/logging/impl/AvalonLogger.java"/>
|
---|
| 221 | <exclude name="org/apache/commons/logging/impl/Jdk13LumberjackLogger.java"/>
|
---|
| 222 | <exclude name="org/apache/commons/logging/impl/Log4JLogger.java"/>
|
---|
| 223 | <exclude name="org/apache/commons/logging/impl/LogKitLogger.java"/>
|
---|
| 224 | <exclude name="org/apache/commons/logging/impl/ServletContextCleaner.java"/>
|
---|
[7019] | 225 | </javac>
|
---|
[8526] | 226 | <!-- JMapViewer -->
|
---|
| 227 | <javac sourcepath="" srcdir="${src.dir}" excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java,org/openstreetmap/josm/**,JOSM.java,gnu/**"
|
---|
[7068] | 228 | destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
|
---|
[7021] | 229 | <compilerarg value="-Xlint:cast"/>
|
---|
[4166] | 230 | <compilerarg value="-Xlint:deprecation"/>
|
---|
[7022] | 231 | <compilerarg value="-Xlint:dep-ann"/>
|
---|
| 232 | <compilerarg value="-Xlint:divzero"/>
|
---|
| 233 | <compilerarg value="-Xlint:empty"/>
|
---|
| 234 | <compilerarg value="-Xlint:finally"/>
|
---|
| 235 | <compilerarg value="-Xlint:overrides"/>
|
---|
| 236 | <!--<compilerarg value="-Xlint:rawtypes"/>-->
|
---|
| 237 | <compilerarg value="-Xlint:static"/>
|
---|
| 238 | <compilerarg value="-Xlint:try"/>
|
---|
[4166] | 239 | <compilerarg value="-Xlint:unchecked"/>
|
---|
[7367] | 240 | <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
|
---|
[7351] | 241 | <compilerarg value="-XDignore.symbol.file"/>
|
---|
[4166] | 242 | </javac>
|
---|
[8526] | 243 | <!-- JOSM -->
|
---|
| 244 | <javac sourcepath="" srcdir="${src.dir}" excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java"
|
---|
| 245 | destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
|
---|
| 246 | <compilerarg value="-Xlint:cast"/>
|
---|
| 247 | <compilerarg value="-Xlint:deprecation"/>
|
---|
| 248 | <compilerarg value="-Xlint:dep-ann"/>
|
---|
| 249 | <compilerarg value="-Xlint:divzero"/>
|
---|
| 250 | <compilerarg value="-Xlint:empty"/>
|
---|
| 251 | <compilerarg value="-Xlint:finally"/>
|
---|
| 252 | <compilerarg value="-Xlint:overrides"/>
|
---|
| 253 | <!--<compilerarg value="-Xlint:rawtypes"/>-->
|
---|
| 254 | <compilerarg value="-Xlint:static"/>
|
---|
| 255 | <compilerarg value="-Xlint:try"/>
|
---|
| 256 | <compilerarg value="-Xlint:unchecked"/>
|
---|
| 257 | <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
|
---|
| 258 | <compilerarg value="-XDignore.symbol.file"/>
|
---|
| 259 | </javac>
|
---|
| 260 |
|
---|
[6756] | 261 | <copy todir="build" failonerror="no" includeemptydirs="no">
|
---|
| 262 | <fileset dir="resources"/>
|
---|
| 263 | </copy>
|
---|
[4166] | 264 | </target>
|
---|
| 265 | <target name="init">
|
---|
[5392] | 266 | <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
|
---|
| 267 | <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
|
---|
| 268 | </uptodate>
|
---|
[4166] | 269 | <mkdir dir="build"/>
|
---|
| 270 | <mkdir dir="dist"/>
|
---|
| 271 | </target>
|
---|
[5263] | 272 | <target name="javadoc">
|
---|
| 273 | <javadoc destdir="javadoc"
|
---|
[7133] | 274 | sourcepath="${src.dir}"
|
---|
[6830] | 275 | encoding="UTF-8"
|
---|
[5263] | 276 | packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
|
---|
| 277 | windowtitle="JOSM"
|
---|
| 278 | use="true"
|
---|
[5481] | 279 | private="true"
|
---|
[5263] | 280 | linksource="true"
|
---|
| 281 | author="false">
|
---|
[7001] | 282 | <link href="http://docs.oracle.com/javase/7/docs/api"/>
|
---|
[5263] | 283 | <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
|
---|
[6955] | 284 | <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
|
---|
[5263] | 285 | </javadoc>
|
---|
| 286 | </target>
|
---|
[4166] | 287 | <target name="clean">
|
---|
| 288 | <delete dir="build"/>
|
---|
| 289 | <delete dir="dist"/>
|
---|
[4252] | 290 | <delete dir="${mapcss.dir}/parsergen"/>
|
---|
[8535] | 291 | <delete file="${src.dir}/org/w3/_2001/xmlschema/Adapter1.java"/>
|
---|
| 292 | <delete dir="${src.dir}/org/openstreetmap/josm/data/imagery/types"/>
|
---|
[4166] | 293 | </target>
|
---|
| 294 | <path id="test.classpath">
|
---|
| 295 | <fileset dir="${test.dir}/lib">
|
---|
| 296 | <include name="**/*.jar"/>
|
---|
| 297 | </fileset>
|
---|
| 298 | <pathelement path="dist/josm-custom.jar"/>
|
---|
[8687] | 299 | <pathelement path="${groovy.jar}"/>
|
---|
[4166] | 300 | </path>
|
---|
[7068] | 301 | <macrodef name="init-test-preferences">
|
---|
| 302 | <attribute name="testfamily"/>
|
---|
| 303 | <sequential>
|
---|
| 304 | <copy file="${test.dir}/config/preferences.template.xml" tofile="${test.dir}/config/@{testfamily}-josm.home/preferences.xml"/>
|
---|
| 305 | <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_USERNAME@" value="${osm.username}"/>
|
---|
| 306 | <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_PASSWORD@" value="${osm.password}"/>
|
---|
| 307 | </sequential>
|
---|
| 308 | </macrodef>
|
---|
[4166] | 309 | <target name="test-init">
|
---|
[6121] | 310 | <mkdir dir="${test.dir}/build"/>
|
---|
[7068] | 311 | <mkdir dir="${test.dir}/build/unit"/>
|
---|
| 312 | <mkdir dir="${test.dir}/build/functional"/>
|
---|
| 313 | <mkdir dir="${test.dir}/build/performance"/>
|
---|
[4166] | 314 | <mkdir dir="${test.dir}/report"/>
|
---|
[7068] | 315 | <init-test-preferences testfamily="unit"/>
|
---|
| 316 | <init-test-preferences testfamily="functional"/>
|
---|
| 317 | <init-test-preferences testfamily="performance"/>
|
---|
[4166] | 318 | </target>
|
---|
| 319 | <target name="test-clean">
|
---|
[6121] | 320 | <delete dir="${test.dir}/build"/>
|
---|
[4166] | 321 | <delete dir="${test.dir}/report"/>
|
---|
[6133] | 322 | <delete file="${test.dir}/jacoco.exec" />
|
---|
[7068] | 323 | <delete file="${test.dir}/config/unit-josm.home/preferences.xml" />
|
---|
| 324 | <delete file="${test.dir}/config/functional-josm.home/preferences.xml" />
|
---|
| 325 | <delete file="${test.dir}/config/performance-josm.home/preferences.xml" />
|
---|
| 326 | <delete dir="${test.dir}/config/unit-josm.home/cache" failonerror="false"/>
|
---|
| 327 | <delete dir="${test.dir}/config/functional-josm.home/cache" failonerror="false"/>
|
---|
| 328 | <delete dir="${test.dir}/config/performance-josm.home/cache" failonerror="false"/>
|
---|
[4166] | 329 | </target>
|
---|
[7068] | 330 | <macrodef name="call-groovyc">
|
---|
| 331 | <attribute name="testfamily"/>
|
---|
| 332 | <element name="cp-elements"/>
|
---|
| 333 | <sequential>
|
---|
| 334 | <groovyc srcdir="${test.dir}/@{testfamily}" destdir="${test.dir}/build/@{testfamily}" encoding="UTF-8">
|
---|
| 335 | <classpath>
|
---|
| 336 | <cp-elements/>
|
---|
| 337 | </classpath>
|
---|
[7367] | 338 | <javac target="1.7" source="1.7" debug="on" encoding="UTF-8">
|
---|
[7068] | 339 | <compilerarg value="-Xlint:all"/>
|
---|
| 340 | <compilerarg value="-Xlint:-serial"/>
|
---|
| 341 | </javac>
|
---|
| 342 | </groovyc>
|
---|
| 343 | </sequential>
|
---|
| 344 | </macrodef>
|
---|
[4166] | 345 | <target name="test-compile" depends="test-init,dist">
|
---|
[8687] | 346 | <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpath="${groovy.jar}"/>
|
---|
[7068] | 347 | <call-groovyc testfamily="unit">
|
---|
| 348 | <cp-elements>
|
---|
| 349 | <path refid="test.classpath"/>
|
---|
| 350 | </cp-elements>
|
---|
| 351 | </call-groovyc>
|
---|
| 352 | <call-groovyc testfamily="functional">
|
---|
| 353 | <cp-elements>
|
---|
| 354 | <path refid="test.classpath"/>
|
---|
| 355 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 356 | </cp-elements>
|
---|
| 357 | </call-groovyc>
|
---|
| 358 | <call-groovyc testfamily="performance">
|
---|
| 359 | <cp-elements>
|
---|
| 360 | <path refid="test.classpath"/>
|
---|
| 361 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 362 | </cp-elements>
|
---|
| 363 | </call-groovyc>
|
---|
[4166] | 364 | </target>
|
---|
[7068] | 365 | <macrodef name="call-junit">
|
---|
| 366 | <attribute name="testfamily"/>
|
---|
| 367 | <sequential>
|
---|
| 368 | <echo message="Running @{testfamily} tests with JUnit"/>
|
---|
| 369 | <jacoco:coverage destfile="${test.dir}/jacoco.exec">
|
---|
| 370 | <junit printsummary="yes" fork="true" forkmode="once">
|
---|
[7367] | 371 | <jvmarg value="-Dfile.encoding=UTF-8"/>
|
---|
[7068] | 372 | <sysproperty key="josm.home" value="${test.dir}/config/@{testfamily}-josm.home"/>
|
---|
| 373 | <sysproperty key="josm.test.data" value="${test.dir}/data"/>
|
---|
| 374 | <sysproperty key="java.awt.headless" value="true"/>
|
---|
| 375 | <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
|
---|
| 376 | <classpath>
|
---|
| 377 | <path refid="test.classpath"/>
|
---|
| 378 | <pathelement path="${test.dir}/build/unit"/>
|
---|
| 379 | <pathelement path="${test.dir}/build/@{testfamily}"/>
|
---|
| 380 | <pathelement path="${test.dir}/config"/>
|
---|
| 381 | </classpath>
|
---|
| 382 | <formatter type="plain"/>
|
---|
| 383 | <formatter type="xml"/>
|
---|
| 384 | <batchtest fork="yes" todir="${test.dir}/report">
|
---|
| 385 | <fileset dir="${test.dir}/build/@{testfamily}" includes="**/*Test.class"/>
|
---|
| 386 | </batchtest>
|
---|
| 387 | </junit>
|
---|
| 388 | </jacoco:coverage>
|
---|
| 389 | </sequential>
|
---|
| 390 | </macrodef>
|
---|
| 391 | <target name="test" depends="test-compile"
|
---|
[7133] | 392 | description="Run unit, functional and performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
|
---|
[6133] | 393 | <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="tools/jacocoant.jar" />
|
---|
[7068] | 394 | <call-junit testfamily="unit"/>
|
---|
| 395 | <call-junit testfamily="functional"/>
|
---|
| 396 | <call-junit testfamily="performance"/>
|
---|
[4166] | 397 | </target>
|
---|
| 398 | <target name="test-html" depends="test" description="Generate HTML test reports">
|
---|
| 399 | <!-- May require additional ant dependencies like ant-trax package -->
|
---|
| 400 | <junitreport todir="${test.dir}/report">
|
---|
| 401 | <fileset dir="${test.dir}/report">
|
---|
| 402 | <include name="TEST-*.xml"/>
|
---|
| 403 | </fileset>
|
---|
| 404 | <report todir="${test.dir}/report/html"/>
|
---|
| 405 | </junitreport>
|
---|
[6133] | 406 | <jacoco:report>
|
---|
| 407 | <executiondata>
|
---|
| 408 | <file file="${test.dir}/jacoco.exec"/>
|
---|
| 409 | </executiondata>
|
---|
| 410 | <structure name="JOSM Test Coverage">
|
---|
| 411 | <classfiles>
|
---|
| 412 | <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
|
---|
| 413 | </classfiles>
|
---|
| 414 | <sourcefiles encoding="UTF-8">
|
---|
| 415 | <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
|
---|
| 416 | </sourcefiles>
|
---|
| 417 | </structure>
|
---|
[6134] | 418 | <html destdir="${test.dir}/report/jacoco"/>
|
---|
[6133] | 419 | </jacoco:report>
|
---|
[4166] | 420 | </target>
|
---|
[8778] | 421 | <!-- Proguard does not support Java 9 : http://sourceforge.net/p/proguard/bugs/551/ -->
|
---|
| 422 | <target name="dist-optimized" depends="dist" unless="isJava9">
|
---|
[4166] | 423 | <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard.jar"/>
|
---|
| 424 | <proguard>
|
---|
[7367] | 425 | -injars dist/josm-custom.jar
|
---|
| 426 | -outjars dist/josm-custom-optimized.jar
|
---|
[4166] | 427 |
|
---|
[7367] | 428 | -libraryjars ${java.home}/lib/rt.jar
|
---|
| 429 | -libraryjars ${java.home}/lib/jce.jar
|
---|
[4166] | 430 |
|
---|
[7367] | 431 | -dontoptimize
|
---|
| 432 | -dontobfuscate
|
---|
[4166] | 433 |
|
---|
[7367] | 434 | # These options probably are not necessary (and make processing a bit slower)
|
---|
| 435 | -dontskipnonpubliclibraryclasses
|
---|
| 436 | -dontskipnonpubliclibraryclassmembers
|
---|
[4166] | 437 |
|
---|
[7367] | 438 | -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
|
---|
| 439 | public static void main(java.lang.String[]);
|
---|
| 440 | }
|
---|
[4166] | 441 |
|
---|
[7367] | 442 | -keep class JOSM
|
---|
| 443 | -keep class * extends org.openstreetmap.josm.io.FileImporter
|
---|
| 444 | -keep class * extends org.openstreetmap.josm.io.FileExporter
|
---|
| 445 | -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
|
---|
[8532] | 446 | -keep class org.openstreetmap.josm.gui.mappaint.mapcss.Condition$PseudoClasses {
|
---|
| 447 | static boolean *(org.openstreetmap.josm.gui.mappaint.Environment);
|
---|
| 448 | }
|
---|
[8172] | 449 | -keep class org.apache.commons.logging.impl.*
|
---|
[4166] | 450 |
|
---|
[7367] | 451 | -keepclassmembers enum * {
|
---|
| 452 | public static **[] values();
|
---|
| 453 | public static ** valueOf(java.lang.String);
|
---|
| 454 | }
|
---|
[4166] | 455 |
|
---|
[7367] | 456 | # Keep unused public methods (can be useful for plugins)
|
---|
| 457 | -keepclassmembers class * {
|
---|
| 458 | public protected *;
|
---|
| 459 | }
|
---|
[4838] | 460 |
|
---|
[7367] | 461 | # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'.
|
---|
| 462 | # This note should not be a problem as we don't use obfuscation
|
---|
| 463 | -dontnote
|
---|
[6133] | 464 | </proguard>
|
---|
[4166] | 465 | </target>
|
---|
| 466 | <target name="check-plugins" depends="dist-optimized">
|
---|
| 467 | <echo message="Check of plugins binary compatibility (needs ant 1.8)"/>
|
---|
| 468 | <local name="dir"/>
|
---|
| 469 | <local name="plugins"/>
|
---|
| 470 | <property name="dir" value="plugin-check"/>
|
---|
| 471 | <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
|
---|
[8156] | 472 | <classpath path="tools/animal-sniffer-ant-tasks-1.14.jar"/>
|
---|
[4166] | 473 | </typedef>
|
---|
| 474 | <mkdir dir="${dir}"/>
|
---|
| 475 | <!-- List of deprecated plugins -->
|
---|
[7133] | 476 | <loadfile property="deprecated-plugins" srcFile="${src.dir}/org/openstreetmap/josm/plugins/PluginHandler.java">
|
---|
[4166] | 477 | <filterchain>
|
---|
| 478 | <linecontains>
|
---|
| 479 | <contains value="new DeprecatedPlugin("/>
|
---|
| 480 | </linecontains>
|
---|
| 481 | <tokenfilter>
|
---|
| 482 | <replaceregex pattern=".*new DeprecatedPlugin\("(.+?)".*" replace="\1|" flags="gi"/>
|
---|
| 483 | </tokenfilter>
|
---|
| 484 | <striplinebreaks/>
|
---|
| 485 | <tokenfilter>
|
---|
| 486 | <replaceregex pattern="\|$" replace="" flags="gi"/>
|
---|
| 487 | </tokenfilter>
|
---|
| 488 | </filterchain>
|
---|
| 489 | </loadfile>
|
---|
[5498] | 490 | <!-- Download list of plugins -->
|
---|
[4166] | 491 | <loadresource property="plugins">
|
---|
[6955] | 492 | <url url="https://josm.openstreetmap.de/plugin"/>
|
---|
[4166] | 493 | <filterchain>
|
---|
| 494 | <linecontainsregexp negate="true">
|
---|
| 495 | <regexp pattern="^\t.*"/>
|
---|
| 496 | </linecontainsregexp>
|
---|
| 497 | <linecontainsregexp negate="true">
|
---|
| 498 | <regexp pattern="${deprecated-plugins}"/>
|
---|
| 499 | </linecontainsregexp>
|
---|
| 500 | <tokenfilter>
|
---|
| 501 | <replaceregex pattern="^.*;" replace="" flags="gi"/>
|
---|
| 502 | </tokenfilter>
|
---|
| 503 | </filterchain>
|
---|
[6133] | 504 | </loadresource>
|
---|
| 505 | <!-- Delete files that are not in plugin list (like old plugins) -->
|
---|
| 506 | <loadresource property="file-list">
|
---|
| 507 | <propertyresource name="plugins"/>
|
---|
| 508 | <filterchain>
|
---|
| 509 | <tokenfilter>
|
---|
| 510 | <replaceregex pattern="^.*/(.*)$" replace="\1\|" flags=""/>
|
---|
| 511 | </tokenfilter>
|
---|
| 512 | <striplinebreaks/>
|
---|
| 513 | <tokenfilter>
|
---|
| 514 | <replaceregex pattern="\|$" replace="" flags="gi"/>
|
---|
| 515 | </tokenfilter>
|
---|
| 516 | </filterchain>
|
---|
| 517 | </loadresource>
|
---|
| 518 | <delete>
|
---|
| 519 | <restrict>
|
---|
| 520 | <fileset dir="${dir}"/>
|
---|
| 521 | <not>
|
---|
| 522 | <name regex="${file-list}"/>
|
---|
| 523 | </not>
|
---|
| 524 | </restrict>
|
---|
| 525 | </delete>
|
---|
| 526 | <!-- Download plugins -->
|
---|
[4166] | 527 | <copy todir="${dir}" flatten="true">
|
---|
| 528 | <resourcelist>
|
---|
| 529 | <string value="${plugins}"/>
|
---|
| 530 | </resourcelist>
|
---|
| 531 | </copy>
|
---|
| 532 | <!-- Check plugins -->
|
---|
[5498] | 533 | <as:build-signatures destfile="${dir}/api.sig">
|
---|
| 534 | <path>
|
---|
| 535 | <fileset file="dist/josm-custom-optimized.jar"/>
|
---|
| 536 | <fileset file="${java.home}/lib/rt.jar"/>
|
---|
| 537 | <fileset file="${java.home}/lib/jce.jar"/>
|
---|
| 538 | </path>
|
---|
[6133] | 539 | </as:build-signatures>
|
---|
[4166] | 540 | <as:check-signature signature="${dir}/api.sig">
|
---|
[7367] | 541 | <ignore classname="au.edu.*"/>
|
---|
| 542 | <ignore classname="au.com.*"/>
|
---|
| 543 | <ignore classname="com.*"/>
|
---|
[7934] | 544 | <ignore classname="de.miethxml.*"/>
|
---|
[8090] | 545 | <ignore classname="javafx.*"/>
|
---|
[7367] | 546 | <ignore classname="javax.*"/>
|
---|
| 547 | <ignore classname="jogamp.*"/>
|
---|
| 548 | <ignore classname="junit.*"/>
|
---|
| 549 | <ignore classname="net.sf.*"/>
|
---|
| 550 | <ignore classname="nu.xom.*"/>
|
---|
| 551 | <ignore classname="org.apache.*"/>
|
---|
| 552 | <ignore classname="org.codehaus.*"/>
|
---|
| 553 | <ignore classname="org.dom4j.*"/>
|
---|
| 554 | <ignore classname="org.hsqldb.*"/>
|
---|
| 555 | <ignore classname="org.ibex.*"/>
|
---|
[7934] | 556 | <ignore classname="org.iso_relax.*"/>
|
---|
[7367] | 557 | <ignore classname="org.jaitools.*"/>
|
---|
| 558 | <ignore classname="org.jaxen.*"/>
|
---|
| 559 | <ignore classname="org.jdom2.*"/>
|
---|
[4166] | 560 | <ignore classname="org.jgraph.*"/>
|
---|
[7367] | 561 | <ignore classname="org.joda.time.*"/>
|
---|
[4166] | 562 | <ignore classname="org.jvnet.staxex.*"/>
|
---|
[7367] | 563 | <ignore classname="org.kxml2.*"/>
|
---|
[8090] | 564 | <ignore classname="org.objectweb.*"/>
|
---|
[7367] | 565 | <ignore classname="org.python.*"/>
|
---|
| 566 | <ignore classname="org.slf4j.*"/>
|
---|
[8173] | 567 | <!-- plugins used by another ones -->
|
---|
[7494] | 568 | <ignore classname="org.openstreetmap.josm.plugins.geotools.*"/>
|
---|
[7934] | 569 | <ignore classname="org.openstreetmap.josm.plugins.jna.*"/>
|
---|
[7494] | 570 | <ignore classname="org.openstreetmap.josm.plugins.jts.*"/>
|
---|
| 571 | <ignore classname="org.openstreetmap.josm.plugins.log4j.*"/>
|
---|
| 572 | <ignore classname="org.openstreetmap.josm.plugins.utilsplugin2.*"/>
|
---|
[4166] | 573 | <path path="${dir}"/>
|
---|
| 574 | </as:check-signature>
|
---|
| 575 | </target>
|
---|
[4838] | 576 |
|
---|
[8687] | 577 | <macrodef name="_taginfo">
|
---|
| 578 | <attribute name="type"/>
|
---|
| 579 | <attribute name="output"/>
|
---|
| 580 | <sequential>
|
---|
| 581 | <echo message="Generating Taginfo for type @{type} to @{output}"/>
|
---|
| 582 | <groovy src="${taginfoextract}" classpath="dist/josm-custom.jar">
|
---|
| 583 | <arg value="-t"/>
|
---|
| 584 | <arg value="@{type}"/>
|
---|
| 585 | <arg value="--noexit"/>
|
---|
| 586 | <arg value="--svnweb"/>
|
---|
| 587 | <arg value="--imgurlprefix"/>
|
---|
| 588 | <arg value="${imgurlprefix}"/>
|
---|
| 589 | <arg value="-o"/>
|
---|
| 590 | <arg value="@{output}"/>
|
---|
| 591 | </groovy>
|
---|
| 592 | </sequential>
|
---|
| 593 | </macrodef>
|
---|
| 594 |
|
---|
| 595 | <target name="taginfo" depends="dist">
|
---|
| 596 | <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${groovy.jar};tools/commons-cli-1.3.1.jar"/>
|
---|
| 597 | <property name="taginfoextract" value="scripts/taginfoextract.groovy"/>
|
---|
| 598 | <property name="imgurlprefix" value="http://josm.openstreetmap.de/download/taginfo/taginfo-img"/>
|
---|
| 599 | <_taginfo type="mappaint" output="taginfo_style.json"/>
|
---|
| 600 | <_taginfo type="presets" output="taginfo_presets.json"/>
|
---|
| 601 | <_taginfo type="external_presets" output="taginfo_external_presets.json"/>
|
---|
| 602 | </target>
|
---|
| 603 |
|
---|
[8508] | 604 | <target name="checkstyle">
|
---|
[8632] | 605 | <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
|
---|
[8834] | 606 | classpath="tools/checkstyle/checkstyle-6.11.2-all.jar"/>
|
---|
[8508] | 607 | <checkstyle config="tools/checkstyle/josm_checks.xml">
|
---|
[8510] | 608 | <fileset dir="${basedir}/src/org/openstreetmap/josm" includes="**/*.java"
|
---|
[8528] | 609 | excludes="gui/mappaint/mapcss/parsergen/*.java"/>
|
---|
[8508] | 610 | <fileset dir="${basedir}/test" includes="**/*.java"/>
|
---|
| 611 | <formatter type="xml" toFile="checkstyle-josm.xml"/>
|
---|
| 612 | </checkstyle>
|
---|
| 613 | </target>
|
---|
| 614 |
|
---|
[4838] | 615 | <target name="findbugs" depends="dist">
|
---|
[6133] | 616 | <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>
|
---|
[4838] | 617 | <path id="findbugs-classpath">
|
---|
| 618 | <fileset dir="tools/findbugs/">
|
---|
| 619 | <include name="*.jar"/>
|
---|
| 620 | </fileset>
|
---|
| 621 | </path>
|
---|
[6133] | 622 | <property name="findbugs-classpath" refid="findbugs-classpath"/>
|
---|
| 623 | <findbugs output="xml"
|
---|
[4838] | 624 | outputFile="findbugs-josm.xml"
|
---|
[6133] | 625 | classpath="${findbugs-classpath}"
|
---|
| 626 | pluginList=""
|
---|
| 627 | excludeFilter="tools/findbugs/josm-filter.xml"
|
---|
| 628 | effort="max"
|
---|
| 629 | >
|
---|
| 630 | <sourcePath path="${basedir}/src" />
|
---|
| 631 | <class location="${basedir}/dist/josm-custom.jar" />
|
---|
| 632 | </findbugs>
|
---|
[4838] | 633 | </target>
|
---|
[5323] | 634 | <target name="run" depends="dist">
|
---|
| 635 | <java jar="dist/josm-custom.jar" fork="true">
|
---|
| 636 | <arg value="--set=expert=true"/>
|
---|
| 637 | <arg value="--set=remotecontrol.enabled=true"/>
|
---|
| 638 | <arg value="--set=debug.edt-checker.enable=false"/>
|
---|
| 639 | <jvmarg value="-Djosm.home=/tmp/.josm/"/>
|
---|
| 640 | </java>
|
---|
| 641 | </target>
|
---|
[4166] | 642 | </project>
|
---|