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