35 lines
864 B
XML
Raw Normal View History

2015-04-26 13:01:40 -07:00
<?xml version="1.0" ?>
2015-04-26 13:50:04 -07:00
<project default="run">
<property name="chapter" value="Design Patterns"/>
<import file="../Ant-Common.xml"/>
2015-04-26 13:01:40 -07:00
<target
depends="build"
description="Compile and run"
name="run">
<touch file="failures"/>
2015-04-26 13:50:04 -07:00
<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" />
2015-04-26 13:01:40 -07:00
<delete file="failures"/>
</target>
</project>