blob: 648f803e85fca57a45853b602cf6153556e65aa2 [file] [log] [blame]
<?xml version="1.0"?>
<project name="copy-test" basedir="." default="test1">
<target name="test1">
<copy file="copy.xml" tofile="copytest1.tmp" />
</target>
<target name="test2">
<copy file="copy.xml" todir="copytest1dir" overwrite="true"/>
</target>
<target name="cleanup">
<delete file="copytest1.tmp"/>
<delete dir="copytest1dir"/>
</target>
</project>