source: josm/trunk/build.xml @ 2618

Last change on this file since 2618 was 2618, checked in by Gubaer, 14 years ago

fixed #4153: Upload dialog's "Upload to '$URL'" isn't updated when the API URL is changed in the preferences
fixed #3642: JOSM offers to use open changeset from a different server

File size: 6.7 KB
Line 
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                       
61Revision: ${version.entry.commit.revision}
62Is-Local-Build: true
63Build-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                <!-- css-->
89                <copy file="src/org/openstreetmap/josm/gui/help/help-browser.css" todir="build/org/openstreetmap/josm/gui/help"/>
90
91                <!-- create josm-custom.jar -->
92                <delete file="dist/josm-custom.jar"/>
93                <jar destfile="dist/josm-custom.jar" basedir="build" level="${clevel}">
94                        <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
95                        <manifest>
96                                <attribute name="Main-class" value="JOSM" />
97                                <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
98                                <attribute name="Main-Date" value="${version.entry.commit.date}"/>
99                        </manifest>
100                        <zipfileset dir="presets" prefix="presets" />
101                        <zipfileset dir="images" prefix="images" />
102                        <zipfileset dir="data" prefix="data" />
103                        <zipfileset src="lib/josm-translation.jar" />
104
105                        <!-- All jar files necessary to run only JOSM (no tests) -->
106                        <zipfileset src="lib/gettext-commons-0.9.6.jar" />
107                        <zipfileset src="lib/metadata-extractor-2.3.1-nosun.jar" />
108                </jar>
109        </target>
110
111        <target name="distmac" depends="dist">
112                <!-- modify MacOS X Info.plist file to hold the SVN version number -->
113                <copy file="macosx/JOSM.app/Contents/Info.plist" todir="build"/>
114                <replace file="build/Info.plist" token="@SVNVersion@" value="${version.entry.commit.revision}"/>
115                <!-- create ZIP file with MacOS X application bundle -->
116                <zip destfile="dist/josm-custom-macosx.zip" update="true">
117                        <zipfileset dir="build" includes="CONTRIBUTION README LICENSE"/>
118                        <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"/>
119                        <zipfileset dir="build" includes="Info.plist" prefix="JOSM.app/Contents"/>
120                        <zipfileset dir="dist" includes="josm-custom.jar" prefix="JOSM.app/Contents/Resources/Java"/>
121                        <zipfileset dir="macosx" includes="JOSM.app/Contents/MacOS/JOSM" filemode="755"/>
122                </zip>
123        </target>
124
125        <target name="compile" depends="init">
126                <javac srcdir="src" classpathref="classpath" destdir="build"
127                                target="1.5" source="1.5" debug="on" encoding="UTF-8">
128                        <compilerarg value="-Xlint:deprecation"/>
129                        <compilerarg value="-Xlint:unchecked"/>
130                </javac>
131        </target>
132
133        <target name="init">
134                <mkdir dir="build" />
135                <mkdir dir="dist" />
136        </target>
137
138        <target name="clean">
139                <delete dir="build" />
140                <delete dir="dist" />
141        </target>
142
143        <path id="test.classpath">
144                <fileset dir="${test.dir}/lib">
145                        <include name="**/*.jar"/>
146                </fileset>
147                <fileset dir="lib">
148                        <include name="**/*.jar"/>
149                </fileset>
150        </path>
151
152        <target name="test-init">
153                <mkdir dir="${test.dir}/${build.dir}" />
154                <mkdir dir="${test.dir}/report" />
155        </target>
156
157        <target name="test-clean">
158                <delete dir="${test.dir}/${build.dir}"/>
159                <delete dir="${test.dir}/report"/>
160        </target>
161
162        <target name="test-compile" depends="test-init">
163                <javac srcdir="${src.dir}:${test.dir}/unit" classpathref="test.classpath" destdir="${test.dir}/${build.dir}"
164                                target="1.5" source="1.5" debug="on" encoding="UTF-8">
165                        <compilerarg value="-Xlint:deprecation"/>
166                        <compilerarg value="-Xlint:unchecked"/>
167                </javac>
168                <javac srcdir="${src.dir}:${test.dir}/functional" classpathref="test.classpath" destdir="${test.dir}/${build.dir}"
169                                                target="1.5" source="1.5" debug="on" encoding="UTF-8">
170                        <compilerarg value="-Xlint:deprecation"/>
171                        <compilerarg value="-Xlint:unchecked"/>
172                </javac>
173        </target>
174
175        <target name="test" depends="test-compile">
176                <junit printsummary="yes">
177                        <sysproperty key="josm.home" value="${test.dir}/config/unit-josm.home"/>
178                        <classpath>
179                                <path refid="test.classpath"/>
180                                <pathelement path="${test.dir}/${build.dir}"/>
181                                <pathelement path="${test.dir}/config"/>
182                        </classpath>
183                        <formatter type="plain"/>
184                        <batchtest fork="no" todir="${test.dir}/report">
185                                <fileset dir="${test.dir}/unit" includes="**/*.java"/>
186                        </batchtest>
187                </junit>
188        </target>
189
190</project>
Note: See TracBrowser for help on using the repository browser.