source: osm/applications/editors/josm/plugins/tageditor/build.xml@ 25192

Last change on this file since 25192 was 25191, checked in by stoecker, 14 years ago

fix build due to JOSM change

File size: 8.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3** This is the build file for the tageditor plugin
4**
5** Maintaining versions
6** ====================
7** see README.template
8**
9** Usage
10** =====
11** To build it run
12**
13** > ant dist
14**
15** To install the generated plugin locally (in your default plugin directory) run
16**
17** > ant install
18**
19** To build against the core in ../../core, create a correct manifest and deploy to
20** SVN,
21** set the properties commit.message and plugin.main.version
22** and run
23** > ant publish
24**
25**
26-->
27<project name="tageditor" default="dist" basedir=".">
28
29
30 <property name="commit.message" value="Updating to JOSM 3210" />
31 <property name="plugin.main.version" value="3835" />
32
33 <!--
34 ************************************************
35 ** should not be necessary to change the following properties
36 -->
37 <property name="josm" location="../../core/dist/josm-custom.jar"/>
38 <property name="plugin.build.dir" value="build"/>
39 <property name="plugin.src.dir" value="src"/>
40 <!-- this is the directory where the plugin jar is copied to -->
41 <property name="plugin.dist.dir" value="../../dist"/>
42 <property name="ant.build.javac.target" value="1.5"/>
43 <property name="plugin.dist.dir" value="../../dist"/>
44 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
45
46 <!--
47 **********************************************************
48 ** init - initializes the build
49 **********************************************************
50 -->
51 <target name="init">
52 <mkdir dir="${plugin.build.dir}"/>
53 </target>
54
55 <!--
56 **********************************************************
57 ** compile - complies the source tree
58 **********************************************************
59 -->
60 <target name="compile" depends="init">
61 <echo message="compiling sources for ${plugin.jar} ... "/>
62 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
63 <compilerarg value="-Xlint:deprecation"/>
64 <compilerarg value="-Xlint:unchecked"/>
65 </javac>
66 </target>
67
68 <!--
69 **********************************************************
70 ** dist - creates the plugin jar
71 **********************************************************
72 -->
73 <target name="dist" depends="compile,revision">
74 <echo message="creating ${plugin.jar} for version ${version.entry.commit.revision} ... "/>
75 <copy todir="${plugin.build.dir}/resources">
76 <fileset dir="resources"/>
77 </copy>
78 <copy todir="${plugin.build.dir}">
79 <fileset dir=".">
80 <include name="README" />
81 <include name="LICENSE" />
82 </fileset>
83 </copy>
84 <copy todir="${plugin.build.dir}">
85 <fileset dir="${plugin.src.dir}">
86 <include name="**/*.dtd"/>
87 </fileset>
88 </copy>
89 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
90 <manifest>
91 <attribute name="Author" value="Karl Guggisberg"/>
92 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.tageditor.TagEditorPlugin"/>
93 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
94 <attribute name="Plugin-Description" value="Provides a dialog for editing tags in a tabular grid."/>
95 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/TagEditor"/>
96 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
97 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
98 </manifest>
99 </jar>
100 </target>
101
102 <!--
103 **********************************************************
104 ** revision - extracts the current revision number for the
105 ** file build.number and stores it in the XML property
106 ** version.*
107 **********************************************************
108 -->
109 <target name="revision">
110 <!-- extract the SVN revision information -->
111 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
112 <env key="LANG" value="C"/>
113 <arg value="info"/>
114 <arg value="--xml"/>
115 <arg value="."/>
116 </exec>
117 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
118 <delete file="REVISION"/>
119 </target>
120
121 <!--
122 **********************************************************
123 ** clean - clean up the build environment
124 **********************************************************
125 -->
126 <target name="clean">
127 <delete dir="${plugin.build.dir}"/>
128 <delete file="${plugin.jar}"/>
129 </target>
130
131 <!--
132 **********************************************************
133 ** install - install the plugin in your local JOSM installation
134 **********************************************************
135 -->
136 <target name="install" depends="dist">
137 <property environment="env"/>
138 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
139 <and>
140 <os family="windows"/>
141 </and>
142 </condition>
143 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
144 </target>
145
146 <!--
147 ************************** Publishing the plugin ***********************************
148 -->
149 <!--
150 ** extracts the JOSM release for the JOSM version in ../core and saves it in the
151 ** property ${coreversion.info.entry.revision}
152 **
153 -->
154 <target name="core-info">
155 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
156 <env key="LANG" value="C"/>
157 <arg value="info"/>
158 <arg value="--xml"/>
159 <arg value="../../core"/>
160 </exec>
161 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
162 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
163 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
164 <delete file="core.info.xml" />
165 </target>
166
167 <!--
168 ** commits the source tree for this plugin
169 -->
170 <target name="commit-current">
171 <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
172 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
173 <env key="LANG" value="C"/>
174 <arg value="commit"/>
175 <arg value="-m '${commit.message}'"/>
176 <arg value="."/>
177 </exec>
178 </target>
179
180 <!--
181 ** updates (svn up) the source tree for this plugin
182 -->
183 <target name="update-current">
184 <echo>Updating plugin source ...</echo>
185 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
186 <env key="LANG" value="C"/>
187 <arg value="up"/>
188 <arg value="."/>
189 </exec>
190 <echo>Updating ${plugin.jar} ...</echo>
191 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
192 <env key="LANG" value="C"/>
193 <arg value="up"/>
194 <arg value="../dist/${plugin.jar}"/>
195 </exec>
196 </target>
197
198 <!--
199 ** commits the plugin.jar
200 -->
201 <target name="commit-dist">
202 <echo>
203***** Properties of published ${plugin.jar} *****
204Commit message : '${commit.message}'
205Plugin-Mainversion: ${plugin.main.version}
206JOSM build version: ${coreversion.info.entry.revision}
207Plugin-Version : ${version.entry.commit.revision}
208***** / Properties of published ${plugin.jar} *****
209
210Now commiting ${plugin.jar} ...
211</echo>
212 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
213 <env key="LANG" value="C"/>
214 <arg value="-m '${commit.message}'"/>
215 <arg value="commit"/>
216 <arg value="${plugin.jar}"/>
217 </exec>
218 </target>
219
220 <!-- ** make sure svn is present as a command line tool ** -->
221 <target name="ensure-svn-present">
222 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code">
223 <env key="LANG" value="C" />
224 <arg value="--version" />
225 </exec>
226 <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system.">
227 <!-- return code not set at all? Most likely svn isn't installed -->
228 <condition>
229 <not>
230 <isset property="svn.exit.code" />
231 </not>
232 </condition>
233 </fail>
234 <fail message="Fatal: command 'svn --version' failed. Please make sure a working copy of svn is installed on your system.">
235 <!-- error code from SVN? Most likely svn is not what we are looking on this system -->
236 <condition>
237 <isfailure code="${svn.exit.code}" />
238 </condition>
239 </fail>
240 </target>
241
242 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
243 </target>
244</project>
Note: See TracBrowser for help on using the repository browser.