24 lines
798 B
XML
24 lines
798 B
XML
<?xml version="1.0" ?>
|
|
|
|
<project default="run">
|
|
<property name="chapter" value="standardio"/>
|
|
<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="ChangeSystemOut" />
|
|
<jrun cls="Echo" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
|
|
<jrun cls="OSExecuteDemo" />
|
|
<jrun cls="Redirecting" />
|
|
</target>
|
|
|
|
<target name="runconsole" description="Compile and run" depends="build">
|
|
<jrunconsole cls="ChangeSystemOut" />
|
|
<jrunconsole cls="Echo" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
|
|
<jrunconsole cls="OSExecuteDemo" />
|
|
<jrunconsole cls="Redirecting" />
|
|
</target>
|
|
|
|
|
|
</project> |