-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
309 lines (268 loc) · 8.53 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
298
299
300
301
302
303
304
305
306
307
308
309
<!-- Build file HotCiv TDD start. Adapted for the dSoftArk course. This source
code is from the book "Flexible, Reliable Software: Using Patterns and Agile
Development" published 2010 by CRC Press. Author: Henrik B Christensen Computer
Science Department Aarhus University This source code is provided WITHOUT
ANY WARRANTY either expressed or implied. You may study, use, modify, and
distribute it for non-commercial purposes. For any commercial use, see http://www.baerbak.com/ -->
<project name="Hotciv" default="help" basedir="."
xmlns:jacoco="antlib:org.jacoco.ant">
<property name="source-directory" value="src" />
<property name="test-source-directory" value="test" />
<property name="build-directory" value="build" />
<property name="resource-directory" value="resource" />
<property name="doc-directory" value="doc" />
<property name="resource-directory" value="resource" />
<property name="fractal" value="lib/fractal.jar" />
<property name="junitJar" value="lib/junit-4.4.jar" />
<property name="minidrawJar" value="lib/minidraw.jar" />
<!-- JaCoCo Coverage analysis -->
<taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml">
<classpath path="lib/jacocoant.jar" />
</taskdef>
<property name="test-output-directory" value="TEST-RESULT" />
<property name="jacoco.report.dir" value="${test-output-directory}/report" />
<property name="jacoco.exec" value="${test-output-directory}/jacoco.exec" />
<!-- define the class path for JUnit testing -->
<path id="class-path">
<pathelement location="${build-directory}" />
<pathelement location="${junitJar}" />
<pathelement location="${minidrawJar}" />
</path>
<!-- define the class path for JUnit testing with fractalMap -->
<path id="fractal-path">
<pathelement location="${build-directory}" />
<pathelement location="${junitJar}" />
<pathelement location="${fractal}" />
</path>
<target name="help">
<echo>
HotCiv build management for dSoftArk
Targets:
build-src: Builds
production code.
clean: Removes all bytecode.
javadoc: Generate JavaDoc
(output in doc/index.html)
test: Run JUnit test cases.
test.batch: Run
JUnit test
cases with output in TEST-RESULT
coverage: Run JUnit
tests
and
generate code coverage report.
Group Delta builds
run: Runs the
fractal map
with 2 parameters (row,column)
buildwp: builds the formats
for the builder
MiniDraw targets:
show: Test MapView
text: Test TextFigure
city: Test CityFigure
dSoftArk Targets:
update: Test partial CivDrawing implementation
(and partial solution for FRS 36.38)
move: Test UnitMoveTool, FRS 36.39
setfocus: Test SetFocusTool, FRS 36.40
turn: Test EndOfTurnTool, FRS 36.42
action: Test ActionTool, FRS 36.43
comp: Test CompositionTool, FRS 36.44
semi: Play SemiCiv using the GUI :-)
=====
</echo>
</target>
<target name="clean">
<delete dir="${build-directory}" />
<delete dir="${doc-directory}" />
<delete dir="${test-output-directory}" />
</target>
<target name="prepare">
<mkdir dir="${build-directory}" />
<mkdir dir="${doc-directory}" />
<mkdir dir="${test-output-directory}" />
</target>
<target name="build-src" depends="prepare">
<javac srcdir="${source-directory}" destdir="${build-directory}"
debug="on" includeantruntime="no">
<classpath>
<path refid="class-path" />
<path refid="fractal-path" />
</classpath>
</javac>
</target>
<target name="build-test" depends="build-src">
<javac srcdir="${test-source-directory}" destdir="${build-directory}"
debug="on" includeantruntime="no">
<classpath>
<path refid="class-path" />
<path refid="fractal-path" />
</classpath>
</javac>
</target>
<target name="copy-resource" depends="prepare">
<copy todir="${build-directory}\${resource-directory}">
<fileset dir="${resource-directory}">
<include name="*.gif" />
</fileset>
</copy>
</target>
<target name="build-all" depends="build-src,build-test,copy-resource" />
<target name="mkdirdoc">
<mkdir dir="${doc-directory}"></mkdir>
</target>
<target name="javadoc" depends="clean,build-src,mkdirdoc">
<javadoc source="1.5" packagenames="hotciv.*" sourcepath="${source-directory}"
destdir="${doc-directory}" package="true" doctitle="<b>HotCiv</b>"
bottom="<b>Skeleton code authored by Henrik B. Christensen </b>"
windowtitle="HotCiv">
<sourcepath>
<pathelement path="${source-directory}" />
</sourcepath>
<classpath>
<path refid="class-path" />
</classpath>
</javadoc>
</target>
<!-- JUnit testing -->
<target name="test" depends="build-all">
<java classname="org.junit.runner.JUnitCore">
<arg value="hotciv.civs.TestAll" />
<classpath refid="class-path" />
</java>
</target>
<!-- Run fractal map -->
<target name="run" description="runs fractal map">
<java classname="hotciv.common.Main">
<arg value="${row}" />
<arg value="${column}" />
<classpath refid="fractal-path" />
</java>
</target>
<!-- builds the builderdemo -->
<target name="buildwp" description="builds each formap for the wordprocessor">
<java classname="hotciv.builder.BuilderDemo">
<classpath refid="class-path" />
</java>
</target>
<target name="test.batch" depends="build-all">
<junit printsummary="yes" fork="yes" forkmode="once"
haltonfailure="yes">
<formatter type="plain" />
<batchtest fork="yes" todir="${test-output-directory}">
<fileset dir="test">
<include name="**/*Test*.java" />
</fileset>
</batchtest>
<classpath refid="class-path" />
</junit>
</target>
<!-- Run JUnit with JaCoCo code coverage -->
<target name="run.junit" depends="build-all">
<jacoco:coverage destfile="${jacoco.exec}">
<junit printsummary="yes" fork="yes" forkmode="once"
haltonfailure="yes">
<formatter type="plain" />
<batchtest fork="yes" todir="${test-output-directory}">
<fileset dir="test">
<include name="**/*Test*.java" />
</fileset>
</batchtest>
<classpath refid="class-path" />
</junit>
</jacoco:coverage>
</target>
<target name="coverage" depends="run.junit"
description="--> Generate code coverage report in the report dir">
<jacoco:report>
<executiondata>
<file file="${jacoco.exec}" />
</executiondata>
<structure name="HotCiv Test">
<classfiles>
<fileset dir="${build-directory}">
<include name="**/*.class" />
</fileset>
</classfiles>
<sourcefiles encoding="UTF-8" tabwidth="2">
<fileset dir="${source-directory}" />
</sourcefiles>
</structure>
<html destdir="${jacoco.report.dir}" />
</jacoco:report>
<echo message="To see report, browse to index.html at ${jacoco.report.dir}." />
</target>
<!-- MiniDraw execution targets -->
<target name="show" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowWorld">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<target name="text" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowText">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<target name="city" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowCity">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<!-- dSoftArk targets -->
<target name="update" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowUpdating">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<target name="move" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowMove">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<target name="setfocus" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowSetFocus">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<target name="turn" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowEndOfTurn">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<target name="action" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowAction">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<target name="comp" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowComposition">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
<target name="semi" depends="build-all">
<java fork="yes" classname="hotciv.visual.ShowSemiCiv">
<classpath>
<path refid="class-path" />
</classpath>
</java>
</target>
</project>