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.36 KB
/
build.xml
File metadata and controls
42 lines (37 loc) · 1.36 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="logging"/>
<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="ConfigureLogging" />
<jrun cls="CustomHandler" />
<jrun cls="InfoLogging" />
<jrun cls="InfoLogging2" />
<jrun cls="LoggingLevelManipulation" />
<jrun cls="LoggingLevels" />
<jrun cls="LogToFile" />
<jrun cls="LogToFile2" />
<jrun cls="MultipleHandlers" />
<jrun cls="MultipleHandlers2" />
<jrun cls="PrintableLogRecord" />
<jrun cls="SimpleFilter" />
<jrun cls="SimpleFormatterExample" />
</target>
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="ConfigureLogging" />
<jrunconsole cls="CustomHandler" />
<jrunconsole cls="InfoLogging" />
<jrunconsole cls="InfoLogging2" />
<jrunconsole cls="LoggingLevelManipulation" />
<jrunconsole cls="LoggingLevels" />
<jrunconsole cls="LogToFile" />
<jrunconsole cls="LogToFile2" />
<jrunconsole cls="MultipleHandlers" />
<jrunconsole cls="MultipleHandlers2" />
<jrunconsole cls="PrintableLogRecord" />
<jrunconsole cls="SimpleFilter" />
<jrunconsole cls="SimpleFormatterExample" />
</target>
</project>