source: josm/trunk/build.xml@ 783

Last change on this file since 783 was 764, checked in by stoecker, 16 years ago

Updated automatic tag corrections

File size: 1.5 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">
[764]5 <include name="gettext-commons-0.9.2.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">
[639]47 <javac srcdir="src" classpathref="classpath" destdir="build"
48 target="1.5" debug="on" encoding="UTF-8">
[529]49 <compilerarg value="-Xlint:deprecation"/>
50 </javac>
[151]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
[109]63</project>
Note: See TracBrowser for help on using the repository browser.