mirror of
https://github.com/apache/lucene.git
synced 2025-02-08 02:58:58 +00:00
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150955 13f79535-47bb-0310-9956-ffa450edef68
27 lines
619 B
XML
27 lines
619 B
XML
<project name="sandbox" default="build-tree">
|
|
|
|
<property name="dist.dir" location="dist"/>
|
|
|
|
<macrodef name="crawl">
|
|
<attribute name="target" default=""/>
|
|
<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>
|
|
|
|
<target name="clean">
|
|
<crawl target="clean"/>
|
|
</target>
|
|
|
|
<target name="build-tree">
|
|
<crawl/>
|
|
</target>
|
|
</project>
|