You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/03/30 00:31:20 UTC

svn commit: r1307149 - /lucene/dev/branches/lucene3930/solr/example/build.xml

Author: rmuir
Date: Thu Mar 29 22:31:20 2012
New Revision: 1307149

URL: http://svn.apache.org/viewvc?rev=1307149&view=rev
Log:
LUCENE-3930: do ivy-availability-check here since we do custom crazy stuff

Modified:
    lucene/dev/branches/lucene3930/solr/example/build.xml

Modified: lucene/dev/branches/lucene3930/solr/example/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/solr/example/build.xml?rev=1307149&r1=1307148&r2=1307149&view=diff
==============================================================================
--- lucene/dev/branches/lucene3930/solr/example/build.xml (original)
+++ lucene/dev/branches/lucene3930/solr/example/build.xml Thu Mar 29 22:31:20 2012
@@ -18,7 +18,9 @@
 <project name="solr-example" default="resolve" xmlns:ivy="antlib:org.apache.ivy.ant">
   <description>Solr Example</description>
 
-  <target name="resolve">
+  <import file="../common-build.xml"/>
+
+  <target name="resolve" depends="ivy-availability-check">
     <sequential>
     <!-- jetty libs in lib/ -->
     <ivy:retrieve conf="default" type="jar" log="download-only"/>
@@ -34,5 +36,4 @@
     </sequential>
   </target>
 
-  <import file="../common-build.xml"/>
 </project>