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

Last change on this file since 18514 was 18514, checked in by guggis, 15 years ago

Updating

File size: 6.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3** This is the build.xml for the validator plugin
4**
5** Usage
6** =====
7** To build it run
8**
9** > ant dist
10**
11** To install the generated plugin locally (in your default plugin directory) run
12**
13** > ant install
14**
15** To build against the core in ../../core, create a correct manifest and deploy to
16** SVN,
17** set the properties commit.message and plugin.main.version
18** and run
19** > ant publish
20**
21**
22-->
23<project name="validator" default="dist" basedir=".">
24
25 <!--
26 ** update before publishing
27 -->
28 <property name="commit.message" value="Updating to JOSM 2414" />
29 <property name="plugin.main.version" value="2414" />
30
31
32 <property name="josm" location="../../core/dist/josm-custom.jar"/>
33 <property name="plugin.dist.dir" value="../../dist"/>
34 <property name="plugin.build.dir" value="build"/>
35 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
36 <property name="ant.build.javac.target" value="1.5"/>
37 <target name="init">
38 <mkdir dir="${plugin.build.dir}"/>
39 </target>
40 <target name="compile" depends="init">
41 <echo message="creating ${plugin.jar}"/>
42 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
43 <compilerarg value="-Xlint:deprecation"/>
44 <compilerarg value="-Xlint:unchecked"/>
45 </javac>
46 </target>
47 <target name="dist" depends="compile,revision">
48 <copy todir="${plugin.build.dir}/images">
49 <fileset dir="images"/>
50 </copy>
51 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
52 <manifest>
53 <attribute name="Author" value="Francisco R. Santos"/>
54 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.validator.OSMValidatorPlugin"/>
55 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
56 <attribute name="Plugin-Description" value="An OSM data validator. It checks for problems in data, and provides fixes for the common ones. Spellcheck integrated for tag names."/>
57 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Validator"/>
58 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
59 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
60 </manifest>
61 </jar>
62 </target>
63 <target name="revision">
64 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
65 <env key="LANG" value="C"/>
66 <arg value="info"/>
67 <arg value="--xml"/>
68 <arg value="."/>
69 </exec>
70 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
71 <delete file="REVISION"/>
72 </target>
73 <target name="clean">
74 <delete dir="${plugin.build.dir}"/>
75 <delete file="${plugin.jar}"/>
76 </target>
77 <target name="install" depends="dist">
78 <property environment="env"/>
79 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
80 <and>
81 <os family="windows"/>
82 </and>
83 </condition>
84 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
85 </target>
86
87 <!--
88 ************************** Publishing the plugin ***********************************
89 -->
90 <!--
91 ** extracts the JOSM release for the JOSM version in ../core and saves it in the
92 ** property ${coreversion.info.entry.revision}
93 **
94 -->
95 <target name="core-info">
96 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
97 <env key="LANG" value="C"/>
98 <arg value="info"/>
99 <arg value="--xml"/>
100 <arg value="../../core"/>
101 </exec>
102 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
103 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
104
105 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
106 <delete file="core.info.xml" />
107 </target>
108
109 <!--
110 ** commits the source tree for this plugin
111 -->
112 <target name="commit-current">
113 <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
114 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
115 <env key="LANG" value="C"/>
116 <arg value="commit"/>
117 <arg value="-m &quot;${commit.message}&quot;"/>
118 <arg value="."/>
119 </exec>
120 </target>
121
122 <!--
123 ** updates (svn up) the source tree for this plugin
124 -->
125 <target name="update-current">
126 <echo>Updating plugin source ...</echo>
127 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
128 <env key="LANG" value="C"/>
129 <arg value="up"/>
130 <arg value="."/>
131 </exec>
132 <echo>Updating ${plugin.jar} ...</echo>
133 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
134 <env key="LANG" value="C"/>
135 <arg value="up"/>
136 <arg value="../dist/${plugin.jar}"/>
137 </exec>
138 </target>
139
140 <!--
141 ** commits the plugin.jar
142 -->
143 <target name="commit-dist">
144 <echo>Commiting ${plugin.jar} with message '${commit.message}' ...</echo>
145 <echo>Plugin-Mainversion is ${plugin.main.version} ...</echo>
146 <echo>JOSM build version is ${coreversion.info.entry.revision} ...</echo>
147 <echo>Plugin-Version is ${version.entry.commit.revision} ...</echo>
148 <condition property="difference-in-josm-version">
149 <equals arg1="${plugin.main.version}" arg2="${coreversion.info.entry.revision}" />
150 </condition>
151 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
152 <env key="LANG" value="C"/>
153 <arg value="commit"/>
154 <arg value="-m &quot;${commit.message}&quot;"/>
155 <arg value="../dist/${plugin.jar}"/>
156 </exec>
157 </target>
158
159 <!--
160 ** outputs a warning if the JOSM version inserted in the plugin manifest isn't equal to the
161 ** the JOSM version the plugin was built against.
162 **
163 ** This isn't necessarily an error but it is a sign that something could be wrong.
164 -->
165 <target name="warn-difference-in-josm-version" unless="${difference-in-josm-version}">
166 <echo level="warning">!!!WARNING!!! Plugin-Mainversion is not equal to the JOSM version used in this build. !!!WARNING!!!</echo>
167 </target>
168
169 <target name="publish" depends="core-info,commit-current,update-current,clean,dist,commit-dist,warn-difference-in-josm-version">
170 </target>
171</project>
Note: See TracBrowser for help on using the repository browser.