source: osm/applications/editors/josm/plugins/slippymap/build.xml@ 9949

Last change on this file since 9949 was 7821, checked in by stoecker, 17 years ago

fixed plugin versioning a bit, removed autogenerated file from svn, updated german translation

File size: 2.3 KB
Line 
1<project name="slippymap" default="dist" basedir=".">
2
3
4 <!-- josm "user home" directory depends on the platform used (windows has a different place than unix/linux) -->
5 <property environment="env"/>
6 <condition property="josm.home.dir" value="${env.APPDATA}/JOSM" else="${user.home}/.josm">
7 <and>
8 <os family="windows"/>
9 </and>
10 </condition>
11
12 <!-- compilation properties -->
13 <property name="josm.build.dir" value="../../core"/>
14 <property name="josm.plugins.dir" value="${josm.home.dir}/plugins"/>
15 <property name="josm" location="../../core/dist/josm-custom.jar" />
16 <property name="plugin.build.dir" value="build"/>
17 <property name="plugin.dist.dir" value="../../dist"/>
18 <property name="plugin.name" value="${ant.project.name}"/>
19 <property name="plugin.jar" value="../../dist/${plugin.name}.jar"/>
20
21 <property name="ant.build.javac.target" value="1.5"/>
22
23
24 <target name="dist" depends="compile">
25 <!-- images -->
26 <copy todir="build/images">
27 <fileset dir="images" />
28 </copy>
29 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
30 <env key="LANG" value="C"/>
31 <arg value="info"/>
32 <arg value="--xml"/>
33 <arg value="."/>
34 </exec>
35 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
36 <delete file="REVISION"/>
37
38 <!-- create josm-custom.jar -->
39 <jar destfile="${plugin.jar}" basedir="build">
40 <manifest>
41 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.slippymap.SlippyMapPlugin" />
42 <attribute name="Plugin-Description" value="Displays a slippy map tile grid, and tile status info" />
43 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
44 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
45 </manifest>
46 </jar>
47 </target>
48
49 <target name="compile" depends="init">
50 <echo message="creating ${plugin.jar}"/>
51 <javac srcdir="src" classpath="../../core/dist/josm-custom.jar" destdir="build" />
52 </target>
53
54 <target name="init">
55 <mkdir dir="${plugin.build.dir}" />
56 </target>
57
58 <target name="clean">
59 <delete dir="${plugin.build.dir}" />
60 <delete file="${plugin.jar}" />
61 </target>
62
63 <target name="install" depends="dist">
64 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
65 </target>
66
67</project>
Note: See TracBrowser for help on using the repository browser.