OnJava8-Examples/com/build.xml
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

23 lines
1.1 KiB
XML

<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="com"/>
<property name="excludedfiles" value=""/>
<import file="../Ant-Common.xml"/>
<import file="../Ant-Clean.xml"/>
<target name="run" description="Compile and run" depends="build">
<jrun cls="com.mindviewinc.atunit.AtUnit" dirpath="../com/mindviewinc/atunit" />
<jrun cls="com.mindviewinc.atunit.ClassNameFinder" dirpath="../com/mindviewinc/atunit" />
<jrun cls="com.mindviewinc.util.ContainerMethodDifferences" dirpath="../com/mindviewinc/util" />
<jrun cls="com.mindviewinc.util.CountingIntegerList" dirpath="../com/mindviewinc/util" />
<jrun cls="com.mindviewinc.util.CountingMapData" dirpath="../com/mindviewinc/util" />
<jrun cls="com.mindviewinc.util.Countries" dirpath="../com/mindviewinc/util" />
<jrun cls="com.mindviewinc.util.Directory" dirpath="../com/mindviewinc/util" />
<jrun cls="com.mindviewinc.util.Hex" dirpath="../com/mindviewinc/util" />
<jrun cls="com.mindviewinc.util.New" dirpath="../com/mindviewinc/util" />
<jrun cls="com.mindviewinc.util.TextFile" dirpath="../com/mindviewinc/util" />
</target>
</project>