lucene/sandbox/contributions/build.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>