forked from MLCL/Byblo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
297 lines (227 loc) · 10 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2010 - 2011, University of Sussex
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Sussex nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<project name="Byblo" default="all" basedir=".">
<description >
Builds and tests the Byblo project.
</description>
<!--
===================
CONFIGURATION SECTION
===================
-->
<!-- Input paths -->
<property name="src.dir" location="${basedir}/src" />
<property name="libs.dir" location="${basedir}/libs" />
<property name="scripts.dir" location="${basedir}/scripts" />
<property name="test.src.dir" location="${basedir}/test" />
<property name="test.data.dir" location="${basedir}/testdata" />
<!-- Output paths -->
<property name="build.dir" location="${basedir}/build"/>
<property name="dist.dir" location="${basedir}/dist"/>
<property name="dist.libs.dir" location="${dist.dir}/libs"/>
<property name="javadoc.dir" location="${build.dir}/javadoc"/>
<property name="test.output.dir" location="${test.data.dir}/out" />
<property name="test.report.dir" location="${build.dir}/test-report"/>
<!-- Misc properties -->
<property name="source.encoding" value="UTF-8"/>
<property name="javac.compilerargs" value="-Xlint:all"/>
<property name="main.class" value="uk.ac.susx.mlcl.byblo.Main"/>
<!--
======================
INITIALISATION SECTION
======================
-->
<target name="init">
<tstamp/>
<property name="build.classes.dir" location="${build.dir}/classes"/>
<property name="test.classes.dir" location="${build.dir}/tests" />
<path id="classpath">
<fileset dir="${libs.dir}" includes="**/*.jar"/>
</path>
<path id="application" location="${dist.dir}/${ant.project.name}.jar" />
</target>
<!--
===================
COMPILATION SECTION
===================
-->
<target name="compile" depends="init"
description="Compile the project classes." >
<mkdir dir="${build.classes.dir}" />
<!-- Compile all java sources to classes dir -->
<javac srcdir="${src.dir}" destdir="${build.classes.dir}"
classpathref="classpath"
includeantruntime="false" >
<compilerarg line="${javac.compilerargs}" />
</javac>
<!-- Copy non-java resources to classes dir -->
<copy todir="${build.classes.dir}" verbose="true">
<fileset dir="${src.dir}" excludes="**/*.java"/>
</copy>
</target>
<target name="jar" depends="compile" description="Build JAR" >
<!-- Convert the libraries classpath to space separated list suitable
for the jar manifest attribute. -->
<pathconvert pathsep=" " property="jar.classpath" refid="classpath">
<chainedmapper>
<flattenmapper/>
<globmapper from="*" to="libs/*"/>
</chainedmapper>
</pathconvert>
<jar jarfile="${dist.dir}/${ant.project.name}.jar"
basedir="${build.classes.dir}" >
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Implementation-Vendor" value="University of Sussex"/>
<attribute name="Implementation-Title" value="Byblo"/>
<attribute name="Implementation-Version" value="unknown"/>
<attribute name="Class-Path" value="${jar.classpath}" />
<attribute name="Main-Class" value="${main.class}"/>
</manifest>
</jar>
</target>
<!--
===============
JAVADOC SECTION
===============
-->
<target depends="init" description="Build Javadoc." name="javadoc">
<mkdir dir="${javadoc.dir}" />
<javadoc additionalparam=""
author="true"
charset="UTF-8"
destdir="${javadoc.dir}"
docencoding="UTF-8"
encoding="${source.encoding}"
failonerror="true"
private="false"
source="1.6"
splitindex="true"
use="true"
useexternalfile="true"
version="true"
windowtitle="">
<classpath refid="classpath" />
<fileset dir="${src.dir}" excludes="*.java" includes="**">
<filename name="**/*.java"/>
</fileset>
</javadoc>
<copy todir="${javadoc.dir}">
<fileset dir="${src.dir}" excludes="" includes="**">
<filename name="**/doc-files/**"/>
</fileset>
</copy>
</target>
<!--
==========================
BUILD DISTRIBUTION SECTION
==========================
-->
<target name="dist" depends="jar" description="Generate the binary distribution" >
<copy todir="${dist.dir}" file="LICENSE" />
<copy todir="${dist.dir}" file="README.md" />
<copy todir="${dist.dir}" >
<fileset dir="${scripts.dir}" includes="**/*.sh" />
</copy>
<chmod perm="a+x">
<fileset dir="${dist.dir}" includes="**/*.sh" />
</chmod>
<mkdir dir="${dist.libs.dir}" />
<copy todir="${dist.libs.dir}" >
<fileset dir="${libs.dir}" includes="**/*.jar" excludes="**junit*.jar"/>
</copy>
</target>
<target name="release" depends="dist, javadoc" description="Create all releasable files including API docus and src bundle." >
<jar jarfile="${dist.dir}/${ant.project.name}-src.jar"
basedir="${src.dir}" >
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Implementation-Vendor" value="University of Sussex"/>
<attribute name="Implementation-Title" value="Byblo"/>
<attribute name="Implementation-Version" value="unknown"/>
</manifest>
</jar>
<zip zipfile="${dist.dir}/${ant.project.name}-api.zip"
basedir="${javadoc.dir}" />
</target>
<!--
============
TEST SECTION
============
-->
<target name="compile-tests" depends="compile" >
<mkdir dir="${test.classes.dir}" />
<!-- Compile all java sources to classes dir -->
<javac srcdir="${test.src.dir}" destdir="${test.classes.dir}"
includeantruntime="false" >
<classpath>
<path refid="classpath" />
<pathelement path="${build.classes.dir}"/>
</classpath>
<compilerarg line="${javac.compilerargs}" />
</javac>
<!-- Copy non-java resources to classes dir -->
<copy todir="${test.classes.dir}" verbose="true">
<fileset dir="${test.src.dir}" excludes="**/*.java"/>
</copy>
</target>
<target name="test" depends="compile-tests" description="Run all unit tests.">
<mkdir dir="${test.report.dir}" />
<junit printsummary="yes" fork="yes" haltonfailure="yes" >
<classpath>
<path refid="classpath" />
<pathelement path="${build.classes.dir}"/>
<pathelement path="${test.classes.dir}"/>
</classpath>
<formatter type="xml" />
<batchtest fork="false" todir="${test.report.dir}">
<fileset dir="${test.classes.dir}">
<include name="**/*Test.class"/>
</fileset>
</batchtest>
</junit>
<mkdir dir="${test.report.dir}" />
<junitreport todir="${test.report.dir}" >
<fileset dir="${test.report.dir}">
<include name="TEST-*.xml"/>
</fileset>
<report format="noframes" todir="${test.report.dir}/html"/>
</junitreport>
</target>
<!--
=============
CLEAN SECTION
=============
-->
<target name="clean" description="Clean-up files generated by this script." >
<delete dir="${build.dir}" />
<delete dir="${javadoc.dir}" />
<delete dir="${dist.dir}" />
<delete dir="${test.output.dir}" />
</target>
<target name="all" depends="test, release"
description="Build, test, and produce the distribution for the whole project."/>
</project>