1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
<!-- $Id: build.xml 281 2005-07-14 14:24:20Z upayavira $ -->
<project name="unzips" default="unzipall" >
<target name="unzipall" unless="unzip.done" >
<echo message="unzip.done = ${unzip.done}" />
<!-- servlet api 2.4 -->
<copy file="servlet/servlet-api.jar"
todir="${lib}"/>
<!-- James Clark's SAX 1 parser -->
<unzip src="xp/xp.zip" dest="xp">
<patternset>
<include name="xp.jar"/>
</patternset>
</unzip>
<copy file="xp/xp.jar"
todir="${lib}" />
<touch file="unzipped" />
</target>
<!-- remove build related files -->
<target name="clean">
<delete file="unzipped" />
</target>
</project>
|