2015-04-26 13:50:04 -07:00

35 lines
864 B
XML

<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="Design Patterns"/>
<import file="../Ant-Common.xml"/>
<target
depends="build"
description="Compile and run"
name="run">
<touch file="failures"/>
<jrun cls="Adapter" />
<jrun cls="BeeAndFlowers" />
<jrun cls="BoxObserver" />
<jrun cls="ChainOfResponsibility" />
<jrun cls="CommandPattern" />
<jrun cls="Facade" />
<jrun cls="GameEnvironment" />
<jrun cls="ObservedFlower" />
<jrun cls="PaperScissorsRock" />
<jrun cls="ProxyDemo" />
<jrun cls="ShapeFactory1" />
<jrun cls="ShapeFactory2" />
<jrun cls="SingletonPattern" />
<jrun cls="StateDemo" />
<jrun cls="StateMachineDemo" />
<jrun cls="StrategyPattern" />
<jrun cls="TemplateMethod" />
<delete file="failures"/>
</target>
</project>