23 lines
634 B
XML
23 lines
634 B
XML
<?xml version="1.0" ?>
|
|
|
|
<project default="run">
|
|
<property name="chapter" value="hiding"/>
|
|
<property name="excludedfiles" value="foreign/Foreign.java"/>
|
|
<import file="../Ant-Common.xml"/>
|
|
<import file="../Ant-Clean.xml"/>
|
|
|
|
<target name="run" description="Compile and run" depends="build">
|
|
<jrun cls="Cake" />
|
|
<jrun cls="ChocolateChip" />
|
|
<jrun cls="ChocolateChip2" />
|
|
<jrun cls="Dinner" />
|
|
<jrun cls="FullQualification" />
|
|
<jrun cls="IceCream" />
|
|
<jrun cls="ImportedMyClass" />
|
|
<jrun cls="LibTest" />
|
|
<jrun cls="QualifiedMyClass" />
|
|
<jrun cls="SingleImport" />
|
|
</target>
|
|
|
|
</project>
|