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

Last change on this file since 18971 was 18971, checked in by stoecker, 15 years ago

fixed wrong deps handling

File size: 6.6 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="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 <!-- ************************** Publishing the plugin *********************************** -->
96 <!--
97 ** extracts the JOSM release for the JOSM version in ../core and saves it in the
98 ** property ${coreversion.info.entry.revision}
99 **
100 -->
101 <target name="core-info">
102 <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="true" failonerror="true">
103 <env key="LANG" value="C" />
104 <arg value="info" />
105 <arg value="--xml" />
106 <arg value="../../core" />
107 </exec>
108 <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true" />
109 <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
110 <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
111 <delete file="core.info.xml" />
112 </target>
113
114 <!-- ** commits the source tree for this plugin ** -->
115 <target name="commit-current">
116 <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
117 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
118 <env key="LANG" value="C" />
119 <arg value="commit" />
120 <arg value="-m '${commit.message}'" />
121 <arg value="." />
122 </exec>
123 </target>
124
125 <!-- ** updates (svn up) the source tree for this plugin -->
126 <target name="update-current">
127 <echo>Updating plugin source ...</echo>
128 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
129 <env key="LANG" value="C" />
130 <arg value="up" />
131 <arg value="." />
132 </exec>
133 <echo>Updating ${plugin.jar} ...</echo>
134 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
135 <env key="LANG" value="C" />
136 <arg value="up" />
137 <arg value="../dist/${plugin.jar}" />
138 </exec>
139 </target>
140
141 <!-- ** commits the plugin.jar -->
142 <target name="commit-dist">
143 <echo>
144 ***** Properties of published ${plugin.jar} *****
145 Commit message : '${commit.message}'
146 Plugin-Mainversion: ${plugin.main.version}
147 JOSM build version: ${coreversion.info.entry.revision}
148 Plugin-Version : ${version.entry.commit.revision}
149 ***** / Properties of published ${plugin.jar} *****
150
151 Now commiting ${plugin.jar} ...
152 </echo>
153 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
154 <env key="LANG" value="C" />
155 <arg value="-m '${commit.message}'" />
156 <arg value="commit" />
157 <arg value="${plugin.jar}" />
158 </exec>
159 </target>
160
161 <!-- ** make sure svn is present as a command line tool ** -->
162 <target name="ensure-svn-present">
163 <exec append="true" output="svn.log" executable="svn" failonerror="false" resultproperty="svn.exit.code">
164 <env key="LANG" value="C" />
165 <arg value="--version"/>
166 </exec>
167 <fail message="Fatal: command 'svn' not found. Please make sure svn is installed on your system.">
168 <condition>
169 <isfailure code="${svn.exit.code}" />
170 </condition>
171 </fail>
172 </target>
173
174 <!-- ** checkin source, build the plugin from scratch and finally checkin the plugin ** -->
175 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
176 </target>
177</project>
Note: See TracBrowser for help on using the repository browser.