You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by gs...@apache.org on 2010/04/13 15:28:56 UTC

svn commit: r933598 - /lucene/dev/trunk/build.xml

Author: gsingers
Date: Tue Apr 13 13:28:56 2010
New Revision: 933598

URL: http://svn.apache.org/viewvc?rev=933598&view=rev
Log:
add a compile target to the top

Modified:
    lucene/dev/trunk/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=933598&r1=933597&r2=933598&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Tue Apr 13 13:28:56 2010
@@ -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>
\ No newline at end of file
+</project>