source: osm/applications/editors/josm/plugins/utilsplugin/build.xml@ 13741

Last change on this file since 13741 was 13723, checked in by stoecker, 16 years ago

close #1652

File size: 2.1 KB
Line 
1<project name="utilsplugin" default="dist" basedir=".">
2 <property name="josm" location="../../core/dist/josm-custom.jar" />
3 <property name="plugin.dist.dir" value="../../dist"/>
4 <property name="plugin.build.dir" value="build"/>
5 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
6 <property name="ant.build.javac.target" value="1.5"/>
7 <target name="init">
8 <mkdir dir="${plugin.build.dir}"/>
9 </target>
10 <target name="compile" depends="init">
11 <echo message="creating ${plugin.jar}"/>
12 <javac srcdir="src" classpath="${josm}" destdir="${plugin.build.dir}" debug="true">
13 <compilerarg value="-Xlint:deprecation"/>
14 <compilerarg value="-Xlint:unchecked"/>
15 </javac>
16 </target>
17 <target name="dist" depends="compile">
18 <copy todir="${plugin.build.dir}/images">
19 <fileset dir="images"/>
20 </copy>
21 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
22 <env key="LANG" value="C"/>
23 <arg value="info"/>
24 <arg value="--xml"/>
25 <arg value="."/>
26 </exec>
27 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
28 <delete file="REVISION"/>
29 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
30 <manifest>
31 <attribute name="Plugin-Class" value="UtilsPlugin.UtilsPlugin"/>
32 <attribute name="Plugin-Description" value="Useful JOSM utilities"/>
33 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
34 <attribute name="Plugin-Mainversion" value="1373"/>
35 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
36 <attribute name="Author" value="Martijn van Oosterhout"/>
37 </manifest>
38 </jar>
39 </target>
40 <target name="clean">
41 <delete dir="${plugin.build.dir}" />
42 <delete file="${plugin.jar}" />
43 </target>
44</project>
Note: See TracBrowser for help on using the repository browser.