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
24 lines (19 loc) · 1.09 KB
/
Copy pathbuild.xml
File metadata and controls
24 lines (19 loc) · 1.09 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
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="staticchecking"/>
<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="staticchecking.dr.DogsAndRobots" dirpath="../staticchecking/dr" />
<jrun cls="staticchecking.drc.DogAndRobotCollections" dirpath="../staticchecking/drc" />
<jrun cls="staticchecking.latent.Latent" dirpath="../staticchecking/latent" />
<jrun cls="staticchecking.petspeak.PetSpeak" dirpath="../staticchecking/petspeak" />
</target>
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="staticchecking.dr.DogsAndRobots" dirpath="../staticchecking/dr" />
<jrunconsole cls="staticchecking.drc.DogAndRobotCollections" dirpath="../staticchecking/drc" />
<jrunconsole cls="staticchecking.latent.Latent" dirpath="../staticchecking/latent" />
<jrunconsole cls="staticchecking.petspeak.PetSpeak" dirpath="../staticchecking/petspeak" />
</target>
</project>