mirror of
https://github.com/apache/lucene.git
synced 2025-02-12 21:15:19 +00:00
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150922 13f79535-47bb-0310-9956-ffa450edef68
27 lines
674 B
XML
27 lines
674 B
XML
<project name="sandbox" default="build-tree">
|
|
|
|
<property name="dist.dir" location="dist"/>
|
|
|
|
<target name="clean">
|
|
<subant target="clean">
|
|
<property name="dist.dir" location="${dist.dir}"/>
|
|
|
|
<fileset dir="."
|
|
includes="*/build.xml"
|
|
/>
|
|
</subant>
|
|
</target>
|
|
|
|
<target name="build-tree">
|
|
<subant target="">
|
|
<property name="dist.dir" location="${dist.dir}"/>
|
|
|
|
<!-- LARM now lives at SourceForge. taglib compiles, but JSP is busted
|
|
-->
|
|
<fileset dir="."
|
|
includes="*/build.xml"
|
|
excludes="webcrawler-LARM/build.xml,taglib/build.xml"
|
|
/>
|
|
</subant>
|
|
</target>
|
|
</project> |