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