source: osm/applications/editors/josm/plugins/OpeningHoursEditor/build.xml@ 27852

Last change on this file since 27852 was 27852, checked in by stoecker, 13 years ago

fix shortcut deprecation

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