source: osm/applications/editors/josm/plugins/osmarender/build.xml@ 19419

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

'Fixed #4360 - osmarender plugin does not load'

File size: 6.7 KB
Line 
1<!--
2** This is a template build file for the osmarender plugin
3**
4** Maintaining versions
5** ====================
6** see README.template
7**
8** Usage
9** =====
10** To build it run
11**
12** > ant dist
13**
14** To install the generated plugin locally (in your default plugin directory) run
15**
16** > ant install
17**
18** To build against the core in ../../core, create a correct manifest and deploy to
19** SVN,
20** set the properties commit.message and plugin.main.version
21** and run
22** > ant publish
23**
24**
25-->
26<project name="osmarender" default="install" basedir=".">
27 <property name="josm" location="../../core/dist/josm-custom.jar" />
28 <property name="plugin.dist.dir" value="../../dist" />
29 <property name="plugin.build.dir" value="build" />
30 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar" />
31 <property name="ant.build.javac.target" value="1.5" />
32 <property name="stylesheets" location="./stylesheets" />
33 <property name="xslt" location="./xslt" />
34
35
36 <property name="commit.message" value="Fixed #4360 - osmarender plugin does not load" />
37 <property name="plugin.main.version" value="2830" />
38
39 <target name="init">
40 <mkdir dir="${plugin.build.dir}" />
41 </target>
42
43 <target name="compile" depends="init">
44 <echo message="creating ${plugin.jar}" />
45 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
46 <compilerarg value="-Xlint:deprecation" />
47 <compilerarg value="-Xlint:unchecked" />
48 </javac>
49 </target>
50 <target name="dist" depends="compile,revision">
51 <copy todir="${plugin.build.dir}" file="${xslt}/osmarender.xsl" />
52 <copy tofile="${plugin.build.dir}/osm-map-features.xml" file="${stylesheets}/osm-map-features-z17.xml" />
53 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
54 <manifest>
55 <attribute name="Author" value="80n" />
56 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.osmarender.OsmarenderPlugin" />
57 <attribute name="Plugin-Date" value="${version.entry.commit.date}" />
58 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image." />
59 <attribute name="Plugin-Mainversion" value="${plugin.main.version}" />
60 <attribute name="Plugin-Version" value="${version.entry.commit.revision}" />
61 </manifest>
62 </jar>
63 </target>
64 <target name="revision">
65 <exec append="false" output="REVISION" executable="perl" failifexecutionfails="false">
66 <env key="LANG" value="C"/>
67 <arg value="../getrevision.pl"/>
68 <arg value="xslt"/>
69 <arg value="stylesheets"/>
70 <arg value="." />
71 </exec>
72 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="true" failonerror="true">
73 <env key="LANG" value="C" />
74 <arg value="info" />
75 <arg value="--xml" />
76 <arg value="." />
77 </exec>
78 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true" />
79 <delete file="REVISION" />
80 </target>
81 <target name="clean">
82 <delete dir="${plugin.build.dir}" />
83 <delete file="${plugin.jar}" />
84 </target>
85 <target name="install" depends="dist">
86 <property environment="env" />
87 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
88 <and>
89 <os family="windows" />
90 </and>
91 </condition>
92 <copy file="${plugin.jar}" todir="${josm.plugins.dir}" />
93 </target>
94
95 <!--
96 ************************** Publishing the plugin ***********************************
97 -->
98 <!--
99 ** extracts the JOSM release for the JOSM version in ../core and saves it in the
100 ** property ${coreversion.info.entry.revision}
101 **
102 -->
103 <target name="core-info">
104 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
105 <env key="LANG" value="C"/>
106 <arg value="info"/>
107 <arg value="--xml"/>
108 <arg value="../../core"/>
109 </exec>
110 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
111 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
112 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
113 <delete file="core.info.xml" />
114 </target>
115
116 <!--
117 ** commits the source tree for this plugin
118 -->
119 <target name="commit-current">
120 <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
121 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
122 <env key="LANG" value="C"/>
123 <arg value="commit"/>
124 <arg value="-m '${commit.message}'"/>
125 <arg value="."/>
126 </exec>
127 </target>
128
129 <!--
130 ** updates (svn up) the source tree for this plugin
131 -->
132 <target name="update-current">
133 <echo>Updating plugin source ...</echo>
134 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
135 <env key="LANG" value="C"/>
136 <arg value="up"/>
137 <arg value="."/>
138 </exec>
139 <echo>Updating ${plugin.jar} ...</echo>
140 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
141 <env key="LANG" value="C"/>
142 <arg value="up"/>
143 <arg value="../dist/${plugin.jar}"/>
144 </exec>
145 </target>
146
147 <!--
148 ** commits the plugin.jar
149 -->
150 <target name="commit-dist">
151 <echo>
152 ***** Properties of published ${plugin.jar} *****
153 Commit message : '${commit.message}'
154 Plugin-Mainversion: ${plugin.main.version}
155 JOSM build version: ${coreversion.info.entry.revision}
156 Plugin-Version : ${version.entry.commit.revision}
157 ***** / Properties of published ${plugin.jar} *****
158
159 Now commiting ${plugin.jar} ...
160 </echo>
161 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
162 <env key="LANG" value="C"/>
163 <arg value="-m '${commit.message}'"/>
164 <arg value="commit"/>
165 <arg value="${plugin.jar}"/>
166 </exec>
167 </target>
168
169 <!-- ** make sure svn is present as a command line tool ** -->
170 <target name="ensure-svn-present">
171 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code">
172 <env key="LANG" value="C" />
173 <arg value="--version" />
174 </exec>
175 <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system.">
176 <!-- return code not set at all? Most likely svn isn't installed -->
177 <condition>
178 <not>
179 <isset property="svn.exit.code" />
180 </not>
181 </condition>
182 </fail>
183 <fail message="Fatal: command 'svn --version' failed. Please make sure a working copy of svn is installed on your system.">
184 <!-- error code from SVN? Most likely svn is not what we are looking on this system -->
185 <condition>
186 <isfailure code="${svn.exit.code}" />
187 </condition>
188 </fail>
189 </target>
190
191 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
192 </target>
193</project>
Note: See TracBrowser for help on using the repository browser.