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
42 lines (37 loc) · 1.26 KB
/
build.xml
File metadata and controls
42 lines (37 loc) · 1.26 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
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="files"/>
<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="AddAndSubtractPaths" />
<jrun cls="Directories" />
<jrun cls="File_System" />
<jrun cls="Find" />
<jrun cls="ListOfLines" />
<jrun cls="PartsOfPaths" />
<jrun cls="PathAnalysis" />
<jrun cls="PathInfo" />
<jrun cls="PathWatcher" />
<jrun cls="ReadLineStream" />
<jrun cls="StreamInAndOut" />
<jrun cls="TreeWatcher" />
<jrun cls="Writing" />
</target>
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="AddAndSubtractPaths" />
<jrunconsole cls="Directories" />
<jrunconsole cls="File_System" />
<jrunconsole cls="Find" />
<jrunconsole cls="ListOfLines" />
<jrunconsole cls="PartsOfPaths" />
<jrunconsole cls="PathAnalysis" />
<jrunconsole cls="PathInfo" />
<jrunconsole cls="PathWatcher" />
<jrunconsole cls="ReadLineStream" />
<jrunconsole cls="StreamInAndOut" />
<jrunconsole cls="TreeWatcher" />
<jrunconsole cls="Writing" />
</target>
</project>