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>
|