source: josm/trunk/build.xml@ 674

Last change on this file since 674 was 639, checked in by gebner, 16 years ago

build.xml: Use UTF-8 as encoding for source files.

File size: 1.5 KB
Line 
1<project name="josm" default="dist" basedir=".">
2
3 <!-- All jar files necessary to run only JOSM (no tests) -->
4 <fileset id="josm_required_libs" dir="lib">
5 <include name="gettext-commons-0.9.jar"/>
6 <include name="metadata-extractor-2.3.1-nosun.jar"/>
7 </fileset>
8
9 <!-- Java classpath addition (all jar files to compile tests with this) -->
10 <path id="classpath">
11 <fileset dir="lib">
12 <include name="**/*.jar"/>
13 </fileset>
14 </path>
15
16 <target name="dist" depends="compile">
17 <!-- jars -->
18 <unjar dest="build">
19 <fileset refid="josm_required_libs" />
20 </unjar>
21
22 <!-- images -->
23 <copy todir="build/images">
24 <fileset dir="images" />
25 </copy>
26
27 <!-- presets -->
28 <copy todir="build/presets">
29 <fileset dir="presets" />
30 </copy>
31
32 <!-- styles -->
33 <copy todir="build/styles">
34 <fileset dir="styles" />
35 </copy>
36
37 <!-- create josm-custom.jar -->
38 <delete file="dist/josm-custom.jar"/>
39 <jar destfile="dist/josm-custom.jar" basedir="build">
40 <manifest>
41 <attribute name="Main-class" value="org.openstreetmap.josm.gui.MainApplication" />
42 </manifest>
43 </jar>
44 </target>
45
46 <target name="compile" depends="init">
47 <javac srcdir="src" classpathref="classpath" destdir="build"
48 target="1.5" debug="on" encoding="UTF-8">
49 <compilerarg value="-Xlint:deprecation"/>
50 </javac>
51 </target>
52
53 <target name="init">
54 <mkdir dir="build" />
55 <mkdir dir="dist" />
56 </target>
57
58 <target name="clean">
59 <delete dir="build" />
60 <delete dir="dist" />
61 </target>
62
63</project>
Note: See TracBrowser for help on using the repository browser.