File: build.xml

package info (click to toggle)
libxt-java 0.20051206-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 10,856 kB
  • ctags: 6,247
  • sloc: java: 22,326; xml: 3,166; sh: 19; makefile: 11
file content (31 lines) | stat: -rw-r--r-- 716 bytes parent folder | download
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>