source: osm/applications/editors/josm/plugins/mappaint/build.xml@ 4435

Last change on this file since 4435 was 4428, checked in by ulf, 17 years ago

add SVN version number to the jar file

File size: 2.2 KB
Line 
1<project name="mappaint" default="build" basedir=".">
2
3 <!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary -->
4 <property name="josm" location="../../core/dist/josm-custom.jar" />
5 <!--<property name="josm" location="../josm/josm-latest.jar" ></property>-->
6
7 <!-- target directory to place the plugin in -->
8 <!-- Windows has a different home directory scheme then unix/linux -->
9 <!-- I don't know an automatic way to find it with ant :-(, if you know, please fix -->
10 <property name="plugins" location="${user.home}/.josm/plugins" ></property>
11 <!--<property name="plugins" location="${user.home}/Anwendungsdaten/JOSM/plugins" ></property>-->
12
13 <!-- you should not need to modify anything below this! -->
14
15
16 <target name="init">
17 <mkdir dir="build"></mkdir>
18 <mkdir dir="dist"></mkdir>
19 </target>
20
21 <target name="compile" depends="init">
22 <javac srcdir="src" classpath="${josm}" destdir="build" debug="true" source="1.5" target="1.5">
23 <include name="**/*.java" />
24 </javac>
25 </target>
26
27 <target name="build" depends="compile">
28 <copy todir="build/standard">
29 <fileset dir="styles/standard"></fileset>
30 </copy>
31 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
32 <env key="LANG" value="C"/>
33 <arg value="info"/>
34 <arg value="--xml"/>
35 <arg value="."/>
36 </exec>
37 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
38 <delete file="REVISION"/>
39 <jar destfile="dist/mappaint.jar" basedir="build">
40 <manifest>
41 <attribute name="Plugin-Class" value="mappaint.MapPaintPlugin" />
42 <attribute name="Plugin-Description" value="An alternative render for the map with colouring, line thickness and icons.&lt;br&gt;" />
43 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
44 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
45 <attribute name="Author" value="Nick Whitelegg / Ulf Lamping"/>
46 </manifest>
47 </jar>
48 </target>
49
50 <target name="clean">
51 <delete dir="build" />
52 <delete dir="dist" />
53 </target>
54
55 <target name="clean_install">
56 <delete file="${plugins}/mappaint.jar" />
57 </target>
58
59 <target name="install" depends="build">
60 <copy file="dist/mappaint.jar" todir="${plugins}"/>
61 </target>
62
63</project>
Note: See TracBrowser for help on using the repository browser.