source: josm/trunk/build.xml@ 554

Last change on this file since 554 was 529, checked in by gebner, 17 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
RevLine 
[154]1<project name="josm" default="dist" basedir=".">
[109]2
[151]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"/>
[392]6 <include name="metadata-extractor-2.3.1-nosun.jar"/>
[151]7 </fileset>
8
9 <!-- Java classpath addition (all jar files to compile tests with this) -->
[111]10 <path id="classpath">
[151]11 <fileset dir="lib">
[111]12 <include name="**/*.jar"/>
13 </fileset>
14 </path>
[109]15
[135]16 <target name="dist" depends="compile">
[111]17 <!-- jars -->
[151]18 <unjar dest="build">
19 <fileset refid="josm_required_libs" />
20 </unjar>
[109]21
[111]22 <!-- images -->
[151]23 <copy todir="build/images">
[111]24 <fileset dir="images" />
25 </copy>
[154]26
[397]27 <!-- presets -->
28 <copy todir="build/presets">
29 <fileset dir="presets" />
30 </copy>
31
[486]32 <!-- styles -->
33 <copy todir="build/styles">
34 <fileset dir="styles" />
35 </copy>
36
[151]37 <!-- create josm-custom.jar -->
[407]38 <delete file="dist/josm-custom.jar"/>
[151]39 <jar destfile="dist/josm-custom.jar" basedir="build">
[111]40 <manifest>
41 <attribute name="Main-class" value="org.openstreetmap.josm.gui.MainApplication" />
42 </manifest>
43 </jar>
44 </target>
[109]45
[151]46 <target name="compile" depends="init">
[529]47 <javac srcdir="src" classpathref="classpath" destdir="build" target="1.5" debug="on">
48 <compilerarg value="-Xlint:deprecation"/>
49 </javac>
[151]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
[109]62</project>
Note: See TracBrowser for help on using the repository browser.