-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
292 lines (256 loc) · 8.24 KB
/
build.xml
File metadata and controls
292 lines (256 loc) · 8.24 KB
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
<!-- Build file HotCiv TDD start.
Adapted for the dSoftArk course.
Updated for newer libraries, Oct 2015
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="./"/>
<property name="test-source-directory" value="./"/>
<property name="build-directory" value="build"/>
<property name="resource-directory" value="resource"/>
<property name="doc-directory" value="doc"/>
<property name="junit.jar" value="lib/junit-4.12.jar"/>
<property name="hamcrest.jar" value="lib/hamcrest-core-1.3.jar"/>
<property name="fractal.jar" value="lib/fractal.jar"/>
<property name="minidraw.jar" 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="${junit.jar}"/>
<pathelement location="${hamcrest.jar}"/>
<pathelement location="${fractal.jar}"/>
<pathelement location="${minidraw.jar}"/>
</path>
<target name="help">
<echo>
HotCiv build management for dSoftArk MiniDraw Exercises
Targets:
build-src: Builds production code.
clean: Removes all bytecode.
javadoc: Generate JavaDoc (output in doc/index.html)
test: Run JUnit test cases.
coverage: Run JUnit tests and generate code coverage report.
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 refid="class-path"/>
</javac>
</target>
<target name="build-test" depends="build-src">
<javac srcdir="${test-source-directory}"
destdir="${build-directory}"
debug = "on"
includeantruntime="no"
>
<classpath refid="class-path"/>
</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.7"
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">
<junit printsummary="yes"
fork="yes"
forkmode="once"
haltonfailure="yes">
<formatter type="plain"/>
<batchtest fork="yes" todir="${test-output-directory}">
<fileset dir="out/production/HotCiv/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="./">
<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>
<target name="fractal" depends="build-all">
<java classname="test.hotciv.standard.FractalMapPrinter">
<classpath refid="class-path"/>
</java>
</target>
<!-- MiniDraw execution targets -->
<target name="show" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowWorld">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<target name="text" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowText">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<target name="city" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowCity">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<!-- dSoftArk targets -->
<target name="update" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowUpdating">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<target name="move" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowMove">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<target name="setfocus" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowSetFocus">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<target name="turn" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowEndOfTurn">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<target name="action" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowAction">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<target name="comp" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowComposition">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
<target name="semi" depends="build-all">
<java fork="yes" classname="test.hotciv.visual.ShowWorkingGame">
<classpath>
<path refid="class-path"/>
</classpath>
</java>
</target>
</project>