You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by gs...@apache.org on 2009/09/11 16:45:51 UTC

svn commit: r813860 - /lucene/solr/trunk/build.xml

Author: gsingers
Date: Fri Sep 11 14:45:51 2009
New Revision: 813860

URL: http://svn.apache.org/viewvc?rev=813860&view=rev
Log:
SOLR-1411: fix build issue

Modified:
    lucene/solr/trunk/build.xml

Modified: lucene/solr/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/build.xml?rev=813860&r1=813859&r2=813860&view=diff
==============================================================================
--- lucene/solr/trunk/build.xml (original)
+++ lucene/solr/trunk/build.xml Fri Sep 11 14:45:51 2009
@@ -358,8 +358,13 @@
   <target name="test"
         description="Runs the core unit tests."
         depends="test-core, test-contrib" />
+
+  <target name="solr-cell-example" depends="compile">
+    <ant antfile="contrib/extraction/build.xml" inheritall="false" target="example" />
+  </target>
   
-  <target name="junit" depends="compileTests">
+  <target name="junit" depends="compileTests,solr-cell-example">
+    
     <!-- no description so it doesn't show up in -projecthelp -->  
     <mkdir dir="${junit.output.dir}"/>