OnJava8-Examples/net/build.xml
2015-05-31 10:45:46 -07:00

23 lines
1.1 KiB
XML

<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="net"/>
<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="net.mindview.atunit.AtUnit" dirpath="../net/mindview/atunit" />
<jrun cls="net.mindview.atunit.ClassNameFinder" dirpath="../net/mindview/atunit" />
<jrun cls="net.mindview.util.ContainerMethodDifferences" dirpath="../net/mindview/util" />
<jrun cls="net.mindview.util.CountingIntegerList" dirpath="../net/mindview/util" />
<jrun cls="net.mindview.util.CountingMapData" dirpath="../net/mindview/util" />
<jrun cls="net.mindview.util.Countries" dirpath="../net/mindview/util" />
<jrun cls="net.mindview.util.Directory" dirpath="../net/mindview/util" />
<jrun cls="net.mindview.util.Hex" dirpath="../net/mindview/util" />
<jrun cls="net.mindview.util.New" dirpath="../net/mindview/util" />
<jrun cls="net.mindview.util.TextFile" dirpath="../net/mindview/util" />
</target>
</project>