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

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

'Removed dependency to perl, made build.xml more robust'

File size: 6.2 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="Removed dependency to perl, made build.xml more robust" />
37 <property name="plugin.main.version" value="2565" />
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="svn" failifexecutionfails="true" failonerror="true">
66 <env key="LANG" value="C" />
67 <arg value="info" />
68 <arg value="--xml" />
69 <arg value="build.xml" />
70 </exec>
71 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true" />
72 <delete file="REVISION" />
73 </target>
74 <target name="clean">
75 <delete dir="${plugin.build.dir}" />
76 <delete file="${plugin.jar}" />
77 </target>
78 <target name="install" depends="dist">
79 <property environment="env" />
80 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
81 <and>
82 <os family="windows" />
83 </and>
84 </condition>
85 <copy file="${plugin.jar}" todir="${josm.plugins.dir}" />
86 </target>
87
88 <!-- ************************** Publishing the plugin *********************************** -->
89 <!--
90 ** extracts the JOSM release for the JOSM version in ../core and saves it in the
91 ** property ${coreversion.info.entry.revision}
92 **
93 -->
94 <target name="core-info">
95 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="true" failonerror="true">
96 <env key="LANG" value="C" />
97 <arg value="info" />
98 <arg value="--xml" />
99 <arg value="../../core" />
100 </exec>
101 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true" />
102 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
103 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
104 <delete file="core.info.xml" />
105 </target>
106
107 <!-- ** commits the source tree for this plugin ** -->
108 <target name="commit-current">
109 <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
110 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
111 <env key="LANG" value="C" />
112 <arg value="commit" />
113 <arg value="-m '${commit.message}'" />
114 <arg value="." />
115 </exec>
116 </target>
117
118 <!-- ** updates (svn up) the source tree for this plugin -->
119 <target name="update-current">
120 <echo>Updating plugin source ...</echo>
121 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
122 <env key="LANG" value="C" />
123 <arg value="up" />
124 <arg value="." />
125 </exec>
126 <echo>Updating ${plugin.jar} ...</echo>
127 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
128 <env key="LANG" value="C" />
129 <arg value="up" />
130 <arg value="../dist/${plugin.jar}" />
131 </exec>
132 </target>
133
134 <!-- ** commits the plugin.jar -->
135 <target name="commit-dist">
136 <echo>
137 ***** Properties of published ${plugin.jar} *****
138 Commit message : '${commit.message}'
139 Plugin-Mainversion: ${plugin.main.version}
140 JOSM build version: ${coreversion.info.entry.revision}
141 Plugin-Version : ${version.entry.commit.revision}
142 ***** / Properties of published ${plugin.jar} *****
143
144 Now commiting ${plugin.jar} ...
145 </echo>
146 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
147 <env key="LANG" value="C" />
148 <arg value="-m '${commit.message}'" />
149 <arg value="commit" />
150 <arg value="${plugin.jar}" />
151 </exec>
152 </target>
153
154 <!-- ** make sure svn is present as a command line tool ** -->
155 <target name="ensure-svn-present">
156 <exec append="true" output="svn.log" executable="svn" failonerror="false" resultproperty="svn.exit.code">
157 <env key="LANG" value="C" />
158 <arg value="--version"/>
159 </exec>
160 <fail message="Fatal: command 'svn' not found. Please make sure svn is installed on your system.">
161 <condition>
162 <isfailure code="${svn.exit.code}" />
163 </condition>
164 </fail>
165 </target>
166
167 <!-- ** checkin source, build the plugin from scratch and finally checkin the plugin ** -->
168 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
169 </target>
170</project>
Note: See TracBrowser for help on using the repository browser.