source: osm/applications/editors/josm/plugins/validator/build.xml@ 12576

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

updated

File size: 2.3 KB
Line 
1<project name="validator" default="dist" basedir=".">
2
3 <!-- compilation properties -->
4 <property name="josm.build.dir" value="../../core"/>
5 <property name="josm.home.dir" value="${user.home}/.josm"/>
6 <property name="plugin.build.dir" value="build"/>
7 <property name="plugin.dist.dir" value="../../dist"/>
8 <property name="plugin.name" value="${ant.project.name}"/>
9 <property name="plugin.jar" value="../../dist/${plugin.name}.jar"/>
10
11 <!-- point to your JOSM directory -->
12 <property name="josm" location="../../core/dist/josm-custom.jar" />
13
14 <property name="ant.build.javac.target" value="1.5"/>
15
16 <target name="init">
17 <mkdir dir="${plugin.build.dir}"/>
18 </target>
19
20 <target name="compile" depends="init">
21 <echo message="creating ${plugin.jar}"/>
22 <javac srcdir="src" classpath="${josm}" destdir="build" debug="true" encoding="UTF-8">
23 <include name="**/*.java" />
24 </javac>
25 </target>
26
27 <target name="dist" depends="clean, compile">
28 <copy todir="build/images">
29 <fileset dir="images"/>
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="${plugin.jar}" basedir="build">
40 <manifest>
41 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.validator.OSMValidatorPlugin"/>
42 <attribute name="Plugin-Description" value="A OSM data validator"/>
43 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
44 <attribute name="Plugin-Mainversion" value="1179"/>
45 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
46 <attribute name="Author" value="Francisco R. Santos"/>
47 </manifest>
48 </jar>
49 </target>
50
51 <!-- clean target -->
52 <target name="clean">
53 <delete dir="${plugin.build.dir}" />
54 <delete file="${plugin.jar}" />
55 </target>
56
57 <target name="install" depends="dist">
58 <copy file="${plugin.jar}" todir="${user.home}/.josm/plugins"/>
59 </target>
60
61 <target name="test" depends="install">
62 <java jar="${josm}" fork="true">
63 </java>
64 </target>
65
66</project>
Note: See TracBrowser for help on using the repository browser.