blob: eb3c566edd4452c4aa2e82548d8c6f07c037ef77 [file] [log] [blame]
<?xml version="1.0"?>
<project name="hadoopcontrib" default="deploy" basedir=".">
<!-- ====================================================== -->
<!-- Build & deploy all the contrib jars. -->
<!-- ====================================================== -->
<target name="deploy">
<subant target="deploy">
<fileset dir="." includes="*/build.xml"/>
</subant>
</target>
<!-- ====================================================== -->
<!-- Test all the contribs. -->
<!-- ====================================================== -->
<target name="test">
<subant target="test">
<fileset dir="." includes="*/build.xml"/>
</subant>
</target>
<!-- ====================================================== -->
<!-- Clean all the contribs. -->
<!-- ====================================================== -->
<target name="clean">
<subant target="clean">
<fileset dir="." includes="*/build.xml"/>
</subant>
</target>
</project>