mirror of https://github.com/apache/lucene.git
add a compile target to the top
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@933598 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4f860640a8
commit
6d356c8d26
15
build.xml
15
build.xml
|
@ -19,7 +19,7 @@
|
|||
|
||||
<project name="lucene-solr" default="test" basedir=".">
|
||||
<property name="lucene.version" value="3.1-dev" />
|
||||
<target name="test">
|
||||
<target name="test" description="Test both Lucene and Solr">
|
||||
<sequential>
|
||||
<subant target="test" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
|
@ -31,7 +31,16 @@
|
|||
</sequential>
|
||||
</target>
|
||||
|
||||
<target name="clean">
|
||||
<target name="compile" description="Compile Lucene and Solr">
|
||||
<sequential>
|
||||
<subant target="compile" inheritall="false" failonerror="true">
|
||||
<!--<fileset dir="lucene" includes="build.xml" /> -->
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant>
|
||||
</sequential>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="Clean Lucene and Solr">
|
||||
<sequential>
|
||||
<subant target="clean" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
|
@ -40,4 +49,4 @@
|
|||
</sequential>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue