49 lines
1.6 KiB
XML
49 lines
1.6 KiB
XML
<?xml version="1.0" ?>
|
|
|
|
<project default="run">
|
|
<property name="chapter" value="holding"/>
|
|
<property name="excludedfiles" value=""/>
|
|
<import file="../Ant-Common.xml"/>
|
|
|
|
<target name="run" description="Compile and run" depends="build">
|
|
<touch file="failures"/>
|
|
<jrun cls="AdapterMethodIdiom" />
|
|
<jrun cls="AddingGroups" />
|
|
<jrun cls="ApplesAndOrangesWithGenerics" />
|
|
<jrun cls="ApplesAndOrangesWithoutGenerics" failOnError='false' msg='* Exception was Expected *' />
|
|
<jrun cls="ArrayIsNotIterable" />
|
|
<jrun cls="AsListInference" />
|
|
<jrun cls="CollectionSequence" />
|
|
<jrun cls="ContainerMethods" />
|
|
<jrun cls="CrossContainerIteration" />
|
|
<jrun cls="EnvironmentVariables" />
|
|
<jrun cls="ForEachCollections" />
|
|
<jrun cls="GenericsAndUpcasting" />
|
|
<jrun cls="InterfaceVsIterator" />
|
|
<jrun cls="IterableClass" />
|
|
<jrun cls="LinkedListFeatures" />
|
|
<jrun cls="ListFeatures" />
|
|
<jrun cls="ListIteration" />
|
|
<jrun cls="holding.MapOfList" dirpath="../holding" />
|
|
<jrun cls="ModifyingArraysAsList" />
|
|
<jrun cls="MultiIterableClass" />
|
|
<jrun cls="NonCollectionSequence" />
|
|
<jrun cls="PetMap" />
|
|
<jrun cls="PrintingContainers" />
|
|
<jrun cls="PriorityQueueDemo" />
|
|
<jrun cls="QueueDemo" />
|
|
<jrun cls="SetOfInteger" />
|
|
<jrun cls="SetOperations" />
|
|
<jrun cls="SimpleCollection" />
|
|
<jrun cls="SimpleIteration" />
|
|
<jrun cls="SortedSetOfInteger" />
|
|
<jrun cls="StackCollision" />
|
|
<jrun cls="StackTest" />
|
|
<jrun cls="Statistics" />
|
|
<jrun cls="UniqueWords" />
|
|
<jrun cls="UniqueWordsAlphabetic" />
|
|
<delete file="failures"/>
|
|
</target>
|
|
|
|
</project>
|