You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ko...@apache.org on 2010/07/10 03:38:00 UTC

svn commit: r962743 - in /lucene/dev/branches/branch_3x/solr: build.xml common-build.xml

Author: koji
Date: Sat Jul 10 01:38:00 2010
New Revision: 962743

URL: http://svn.apache.org/viewvc?rev=962743&view=rev
Log:
SOLR-1956: fix on ant luke

Modified:
    lucene/dev/branches/branch_3x/solr/build.xml
    lucene/dev/branches/branch_3x/solr/common-build.xml

Modified: lucene/dev/branches/branch_3x/solr/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/build.xml?rev=962743&r1=962742&r2=962743&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/build.xml (original)
+++ lucene/dev/branches/branch_3x/solr/build.xml Sat Jul 10 01:38:00 2010
@@ -976,7 +976,7 @@
     <pathelement location="${common-solr.dir}/../lucene/build/contrib/xml-query-parser/classes/java" />
 
   </path>
-  <target name="luke" depends="luke-download">
+  <target name="luke" depends="luke-download, compile-lucene">
     <java fork="true" 
           classname="org.getopt.luke.Luke"
           logError="true"

Modified: lucene/dev/branches/branch_3x/solr/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/common-build.xml?rev=962743&r1=962742&r2=962743&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/common-build.xml (original)
+++ lucene/dev/branches/branch_3x/solr/common-build.xml Sat Jul 10 01:38:00 2010
@@ -217,6 +217,7 @@
     <ant antfile="build.xml" target="compile" dir="../lucene/contrib/queries"/>
     <ant antfile="build.xml" target="compile" dir="../lucene/contrib/spatial"/>
     <ant antfile="build.xml" target="compile" dir="../lucene/contrib/spellchecker"/>
+    <ant antfile="build.xml" target="compile" dir="../lucene/contrib/xml-query-parser"/>
   </target>