Ticket #4299: build.xml
| File build.xml, 397 bytes (added by , 15 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?xml version="1.0"?> |
| 2 | |
| 3 | <project name="testing" default = "unzip"> |
| 4 | <target name="unzip" > |
| 5 | <delete includeemptydirs="true" failonerror="false" quiet="true" > |
| 6 | <fileset dir="test" includes="**/*"/> |
| 7 | <fileset dir="another" includes="**/*"/> |
| 8 | </delete> |
| 9 | <mkdir dir="test/test/test"/> |
| 10 | <unzip src="a.zip" dest="another"/> |
| 11 | </target> |
| 12 | </project> |

