2004-01-05 02:09:42 -05:00
|
|
|
<project name="sandbox" default="build-tree">
|
|
|
|
|
2004-01-05 11:35:10 -05:00
|
|
|
<property name="dist.dir" location="dist"/>
|
|
|
|
|
2004-02-15 14:19:55 -05:00
|
|
|
<macrodef name="crawl">
|
|
|
|
<attribute name="target"/>
|
|
|
|
<sequential>
|
|
|
|
<subant target="@{target}" failonerror="false">
|
|
|
|
<property name="dist.dir" location="${dist.dir}"/>
|
|
|
|
|
|
|
|
<fileset dir="."
|
|
|
|
includes="*/build.xml"
|
|
|
|
excludes="webcrawler-LARM/build.xml,taglib/build.xml"
|
|
|
|
/>
|
|
|
|
</subant>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
2004-01-05 11:35:10 -05:00
|
|
|
|
2004-02-15 14:19:55 -05:00
|
|
|
<target name="clean">
|
|
|
|
<crawl target="clean"/>
|
2004-01-05 10:54:53 -05:00
|
|
|
</target>
|
|
|
|
|
2004-01-05 02:09:42 -05:00
|
|
|
<target name="build-tree">
|
2004-02-15 14:19:55 -05:00
|
|
|
<crawl target=""/>
|
2004-01-05 02:09:42 -05:00
|
|
|
</target>
|
2004-02-15 14:19:55 -05:00
|
|
|
</project>
|