You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?xml version="1.0"?>
-
- <project name="copyfile-test" basedir="." default="test1">
-
- <target name="test1">
- <copyfile/>
- </target>
-
- <target name="test2">
- <copyfile src=""/>
- </target>
-
- <target name="test3">
- <copyfile dest=""/>
- </target>
-
- <target name="test4">
- <copyfile src="template.xml"
- dest="template.xml"/>
- </target>
-
- <target name="test5">
- <copyfile src="copyfile.xml"
- dest="copyfile.tmp"/>
- </target>
-
- <target name="test6">
- <copyfile src="copyfile.xml"
- dest="testdir"/>
- </target>
-
- </project>
|