forked from BruceEckel/OnJava8-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
52 lines (47 loc) · 1.61 KB
/
build.xml
File metadata and controls
52 lines (47 loc) · 1.61 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
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="references"/>
<property name="excludedfiles" value=""/>
<import file="../Ant-Common.xml"/>
<import file="../Ant-Clean.xml"/>
<target name="run" description="Compile and run" depends="build">
<jrun cls="AddingClone" />
<jrun cls="Alias1" />
<jrun cls="Alias2" />
<jrun cls="CheckCloneable" />
<jrun cls="CloneArrayList" />
<jrun cls="Compete" />
<jrun cls="CopyConstructor" />
<jrun cls="DeepCopy" />
<jrun cls="HorrorFlick" />
<jrun cls="Immutable1" />
<jrun cls="Immutable2" />
<jrun cls="ImmutableInteger" />
<jrun cls="ImmutableStrings" />
<jrun cls="MutableInteger" />
<jrun cls="PassReferences" />
<jrun cls="SimplerMutableInteger" />
<jrun cls="Snake" />
<jrun cls="Stringer" />
</target>
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="AddingClone" />
<jrunconsole cls="Alias1" />
<jrunconsole cls="Alias2" />
<jrunconsole cls="CheckCloneable" />
<jrunconsole cls="CloneArrayList" />
<jrunconsole cls="Compete" />
<jrunconsole cls="CopyConstructor" />
<jrunconsole cls="DeepCopy" />
<jrunconsole cls="HorrorFlick" />
<jrunconsole cls="Immutable1" />
<jrunconsole cls="Immutable2" />
<jrunconsole cls="ImmutableInteger" />
<jrunconsole cls="ImmutableStrings" />
<jrunconsole cls="MutableInteger" />
<jrunconsole cls="PassReferences" />
<jrunconsole cls="SimplerMutableInteger" />
<jrunconsole cls="Snake" />
<jrunconsole cls="Stringer" />
</target>
</project>