source: josm/trunk/build.xml @ 529

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

Part one of patch by Dave Hansen <dave@…>

  • Remove unused imports
  • Main.debug
  • Make attribute merging aware of TIGER-import attributes
  • Better upload progress information
  • Retry uploads
File size: 1.4 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" target="1.5" debug="on">
48                        <compilerarg value="-Xlint:deprecation"/>
49                </javac>
50        </target>
51
52        <target name="init">
53                <mkdir dir="build" />
54                <mkdir dir="dist" />
55        </target>
56
57        <target name="clean">
58                <delete dir="build" />
59                <delete dir="dist" />
60        </target>
61
62</project>
Note: See TracBrowser for help on using the repository browser.