File: build.xml

package info (click to toggle)
zookeeper 3.4.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 16,744 kB
  • sloc: java: 50,871; xml: 24,450; cpp: 11,899; ansic: 9,284; sh: 2,450; python: 2,224; makefile: 232; perl: 114
file content (35 lines) | stat: -rw-r--r-- 896 bytes parent folder | download | duplicates (3)
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
32
33
34
35
<project name="zookeepercontrib" default="compile" basedir="../src/contrib">
  
  <!-- this file is an override of src/contrib/build.xml to exclude contrib/rest
       see https://issues.apache.org/jira/browse/ZOOKEEPER-640
  -->
  <fileset id="debiancontribfileset" 
           dir="." 
           includes="*/build.xml"
           excludes="rest/build.xml"
           />

  <target name="compile">
    <subant target="jar">
      <fileset refid="debiancontribfileset" />
    </subant>
  </target>
  
  <target name="package">
    <subant target="package">
      <fileset refid="debiancontribfileset" />
    </subant>
  </target>
  
  <target name="test">
    <subant target="test">
      <fileset refid="debiancontribfileset" />
    </subant>
  </target>
  
  <target name="clean">
    <subant target="clean">
      <fileset refid="debiancontribfileset" />
    </subant>
  </target>
</project>