| 1 | <!--
 | 
|---|
| 2 | ** build.xml - main ant file for JOSM
 | 
|---|
| 3 | **
 | 
|---|
| 4 | ** To build run
 | 
|---|
| 5 | **    ant clean
 | 
|---|
| 6 | **    ant dist
 | 
|---|
| 7 | ** This will create 'josm-custom.jar'  in directory 'dist'. See also 
 | 
|---|
| 8 | **   https://josm.openstreetmap.de/wiki/CreateBuild
 | 
|---|
| 9 | ** 
 | 
|---|
| 10 | ** 
 | 
|---|
| 11 | -->
 | 
|---|
| 12 | <project name="josm" default="dist" basedir=".">
 | 
|---|
| 13 |         <property name="test.dir" value="test" />
 | 
|---|
| 14 |         <property name="src.dir" value="src" />
 | 
|---|
| 15 |         <property name="build.dir" value="build"/>
 | 
|---|
| 16 |         <!-- build parameter: compression level (ant -Dclevel=N)
 | 
|---|
| 17 |              N ranges from 0 (no compression) to 9 (maximum compression)
 | 
|---|
| 18 |              default: 9 -->
 | 
|---|
| 19 |         <condition property="clevel" value="${clevel}" else="9">
 | 
|---|
| 20 |                 <isset property="clevel" />
 | 
|---|
| 21 |         </condition>
 | 
|---|
| 22 | 
 | 
|---|
| 23 |         <!-- Java classpath addition (all jar files to compile tests with this) -->
 | 
|---|
| 24 |         <path id="classpath">
 | 
|---|
| 25 |                 <fileset dir="lib">
 | 
|---|
| 26 |                         <include name="**/*.jar"/>
 | 
|---|
| 27 |                 </fileset>
 | 
|---|
| 28 |         </path>
 | 
|---|
| 29 | 
 | 
|---|
| 30 | 
 | 
|---|
| 31 |         <!--
 | 
|---|
| 32 |           ** Used by Eclipse ant builder for updating 
 | 
|---|
| 33 |           ** the REVISION file used by JOSM
 | 
|---|
| 34 |         -->
 | 
|---|
| 35 |         <target name="create-revision-eclipse">
 | 
|---|
| 36 |                 <property name="revision.dir" value="bin"/>
 | 
|---|
| 37 |                 <antcall target="create-revision" />
 | 
|---|
| 38 |         </target>
 | 
|---|
| 39 | 
 | 
|---|
| 40 |         <!--
 | 
|---|
| 41 |           ** Creates the REVISION file to be included in the distribution
 | 
|---|
| 42 |           -->
 | 
|---|
| 43 |         <target name="create-revision">
 | 
|---|
| 44 |                 <property name="revision.dir" value="${build.dir}"/>
 | 
|---|
| 45 |                 <exec append="false" output="REVISION.XML" executable="svn" failifexecutionfails="false">
 | 
|---|
| 46 |                         <env key="LANG" value="C"/>
 | 
|---|
| 47 |                         <arg value="info"/>
 | 
|---|
| 48 |                         <arg value="--xml"/>
 | 
|---|
| 49 |                         <arg value="."/>
 | 
|---|
| 50 |                 </exec>
 | 
|---|
| 51 |                 <xmlproperty file="REVISION.XML" prefix="version" keepRoot="false" collapseAttributes="true"/>
 | 
|---|
| 52 |                 <delete file="REVISION.XML" />
 | 
|---|
| 53 |                 <tstamp>
 | 
|---|
| 54 |                         <format property="build.tstamp" pattern="yyyy-MM-dd HH:mm:ss"/>
 | 
|---|
| 55 |                 </tstamp>
 | 
|---|
| 56 | 
 | 
|---|
| 57 |                 <property name="version.entry.commit.revision" value="UNKNOWN"/>
 | 
|---|
| 58 |                 <mkdir dir="${revision.dir}" />
 | 
|---|
| 59 |                 <echo file="${revision.dir}/REVISION">
 | 
|---|
| 60 | # automatically generated by JOSM build.xml - do not edit                       
 | 
|---|
| 61 | Revision: ${version.entry.commit.revision}
 | 
|---|
| 62 | Is-Local-Build: true
 | 
|---|
| 63 | Build-Date: ${build.tstamp}             
 | 
|---|
| 64 | </echo>
 | 
|---|
| 65 |         </target>
 | 
|---|
| 66 | 
 | 
|---|
| 67 | 
 | 
|---|
| 68 |         <target name="dist" depends="compile,create-revision">
 | 
|---|
| 69 | 
 | 
|---|
| 70 |                 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
 | 
|---|
| 71 |                         <env key="LANG" value="C"/>
 | 
|---|
| 72 |                         <arg value="info"/>
 | 
|---|
| 73 |                         <arg value="--xml"/>
 | 
|---|
| 74 |                         <arg value="."/>
 | 
|---|
| 75 |                 </exec>
 | 
|---|
| 76 |                 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
 | 
|---|
| 77 |                 <delete file="REVISION"/>
 | 
|---|
| 78 |                 <property name="version.entry.commit.revision" value="UNKNOWN"/>
 | 
|---|
| 79 |                 <property name="version.entry.commit.date" value="UNKNOWN"/>
 | 
|---|
| 80 |                 <echo>Revision ${version.entry.commit.revision}</echo>
 | 
|---|
| 81 |                 <copy file="CONTRIBUTION" todir="build"/>
 | 
|---|
| 82 |                 <copy file="README" todir="build"/>
 | 
|---|
| 83 |                 <copy file="LICENSE" todir="build"/>
 | 
|---|
| 84 | 
 | 
|---|
| 85 |                 <!-- styles -->
 | 
|---|
| 86 |                 <copy file="styles/standard/elemstyles.xml" todir="build/styles/standard"/>
 | 
|---|
| 87 | 
 | 
|---|
| 88 |                 <!-- create josm-custom.jar -->
 | 
|---|
| 89 |                 <delete file="dist/josm-custom.jar"/>
 | 
|---|
| 90 |                 <jar destfile="dist/josm-custom.jar" basedir="build" level="${clevel}">
 | 
|---|
| 91 |                         <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
 | 
|---|
| 92 |                         <manifest>
 | 
|---|
| 93 |                                 <attribute name="Main-class" value="JOSM" />
 | 
|---|
| 94 |                                 <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
 | 
|---|
| 95 |                                 <attribute name="Main-Date" value="${version.entry.commit.date}"/>
 | 
|---|
| 96 |                         </manifest>
 | 
|---|
| 97 |                         <zipfileset dir="presets" prefix="presets" />
 | 
|---|
| 98 |                         <zipfileset dir="images" prefix="images" />
 | 
|---|
| 99 |                         <zipfileset dir="data" prefix="data" />
 | 
|---|
| 100 | 
 | 
|---|
| 101 |                         <!-- All jar files necessary to run only JOSM (no tests) -->
 | 
|---|
| 102 |                         <zipfileset src="lib/metadata-extractor-2.3.1-nosun.jar" />
 | 
|---|
| 103 |                         <zipfileset src="lib/signpost-core-1.1.jar" />
 | 
|---|
| 104 |                 </jar>
 | 
|---|
| 105 |         </target>
 | 
|---|
| 106 | 
 | 
|---|
| 107 |         <target name="distmac" depends="dist">
 | 
|---|
| 108 |                 <!-- modify MacOS X Info.plist file to hold the SVN version number -->
 | 
|---|
| 109 |                 <copy file="macosx/JOSM.app/Contents/Info.plist" todir="build"/>
 | 
|---|
| 110 |                 <replace file="build/Info.plist" token="@SVNVersion@" value="${version.entry.commit.revision}"/>
 | 
|---|
| 111 |                 <!-- create ZIP file with MacOS X application bundle -->
 | 
|---|
| 112 |                 <zip destfile="dist/josm-custom-macosx.zip" update="true">
 | 
|---|
| 113 |                         <zipfileset dir="build" includes="CONTRIBUTION README LICENSE"/>
 | 
|---|
| 114 |                         <zipfileset dir="macosx" includes="JOSM.app/Contents JOSM.app/Contents/MacOS JOSM.app/Contents/Resources JOSM.app/Contents/Resources/Java JOSM.app/Contents/PkgInfo JOSM.app/Contents/Resources/JOSM.icns"/>
 | 
|---|
| 115 |                         <zipfileset dir="build" includes="Info.plist" prefix="JOSM.app/Contents"/>
 | 
|---|
| 116 |                         <zipfileset dir="dist" includes="josm-custom.jar" prefix="JOSM.app/Contents/Resources/Java"/>
 | 
|---|
| 117 |                         <zipfileset dir="macosx" includes="JOSM.app/Contents/MacOS/JOSM" filemode="755"/>
 | 
|---|
| 118 |                 </zip>
 | 
|---|
| 119 |         </target>
 | 
|---|
| 120 | 
 | 
|---|
| 121 |         <target name="compile" depends="init">
 | 
|---|
| 122 |                 <javac srcdir="src" classpathref="classpath" destdir="build"
 | 
|---|
| 123 |                                 target="1.5" source="1.5" debug="on" encoding="UTF-8">
 | 
|---|
| 124 |                         <compilerarg value="-Xlint:deprecation"/>
 | 
|---|
| 125 |                         <compilerarg value="-Xlint:unchecked"/>
 | 
|---|
| 126 |                 </javac>
 | 
|---|
| 127 |         </target>
 | 
|---|
| 128 | 
 | 
|---|
| 129 |         <target name="init">
 | 
|---|
| 130 |                 <mkdir dir="build" />
 | 
|---|
| 131 |                 <mkdir dir="dist" />
 | 
|---|
| 132 |         </target>
 | 
|---|
| 133 | 
 | 
|---|
| 134 |         <target name="clean">
 | 
|---|
| 135 |                 <delete dir="build" />
 | 
|---|
| 136 |                 <delete dir="dist" />
 | 
|---|
| 137 |         </target>
 | 
|---|
| 138 | 
 | 
|---|
| 139 |         <path id="test.classpath">
 | 
|---|
| 140 |                 <fileset dir="${test.dir}/lib">
 | 
|---|
| 141 |                         <include name="**/*.jar"/>
 | 
|---|
| 142 |                 </fileset>
 | 
|---|
| 143 |                 <fileset dir="lib">
 | 
|---|
| 144 |                         <include name="**/*.jar"/>
 | 
|---|
| 145 |                 </fileset>
 | 
|---|
| 146 |         </path>
 | 
|---|
| 147 | 
 | 
|---|
| 148 |         <target name="test-init">
 | 
|---|
| 149 |                 <mkdir dir="${test.dir}/${build.dir}" />
 | 
|---|
| 150 |                 <mkdir dir="${test.dir}/report" />
 | 
|---|
| 151 |         </target>
 | 
|---|
| 152 | 
 | 
|---|
| 153 |         <target name="test-clean">
 | 
|---|
| 154 |                 <delete dir="${test.dir}/${build.dir}"/>
 | 
|---|
| 155 |                 <delete dir="${test.dir}/report"/>
 | 
|---|
| 156 |         </target>
 | 
|---|
| 157 | 
 | 
|---|
| 158 |         <target name="test-compile" depends="test-init">
 | 
|---|
| 159 |                 <javac srcdir="${src.dir}:${test.dir}/unit" classpathref="test.classpath" destdir="${test.dir}/${build.dir}"
 | 
|---|
| 160 |                                 target="1.5" source="1.5" debug="on" encoding="UTF-8">
 | 
|---|
| 161 |                         <compilerarg value="-Xlint:deprecation"/>
 | 
|---|
| 162 |                         <compilerarg value="-Xlint:unchecked"/>
 | 
|---|
| 163 |                 </javac>
 | 
|---|
| 164 |                 <javac srcdir="${src.dir}:${test.dir}/functional" classpathref="test.classpath" destdir="${test.dir}/${build.dir}"
 | 
|---|
| 165 |                                                 target="1.5" source="1.5" debug="on" encoding="UTF-8">
 | 
|---|
| 166 |                         <compilerarg value="-Xlint:deprecation"/>
 | 
|---|
| 167 |                         <compilerarg value="-Xlint:unchecked"/>
 | 
|---|
| 168 |                 </javac>
 | 
|---|
| 169 |         </target>
 | 
|---|
| 170 | 
 | 
|---|
| 171 |         <target name="test" depends="test-compile">
 | 
|---|
| 172 |                 <junit printsummary="yes">
 | 
|---|
| 173 |                         <sysproperty key="josm.home" value="${test.dir}/config/unit-josm.home"/>
 | 
|---|
| 174 |                         <classpath>
 | 
|---|
| 175 |                                 <path refid="test.classpath"/>
 | 
|---|
| 176 |                                 <pathelement path="${test.dir}/${build.dir}"/>
 | 
|---|
| 177 |                                 <pathelement path="${test.dir}/config"/>
 | 
|---|
| 178 |                         </classpath>
 | 
|---|
| 179 |                         <formatter type="plain"/>
 | 
|---|
| 180 |                         <batchtest fork="no" todir="${test.dir}/report">
 | 
|---|
| 181 |                                 <fileset dir="${test.dir}/unit" includes="**/*.java"/>
 | 
|---|
| 182 |                         </batchtest>
 | 
|---|
| 183 |                 </junit>
 | 
|---|
| 184 |         </target>
 | 
|---|
| 185 | 
 | 
|---|
| 186 | </project>
 | 
|---|