23 lines
634 B
XML
Raw Normal View History

2015-06-15 17:47:35 -07:00
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="hiding"/>
2015-09-07 11:44:36 -06:00
<property name="excludedfiles" value="foreign/Foreign.java"/>
2015-06-15 17:47:35 -07:00
<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>