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/04/04 21:31:16 UTC

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

Author: rmuir
Date: Wed Apr  4 19:31:15 2012
New Revision: 1309559

URL: http://svn.apache.org/viewvc?rev=1309559&view=rev
Log:
LUCENE-3946: some tips on dealing with ant classpath in the ivy avail check error

Modified:
    lucene/dev/branches/branch_3x/   (props changed)
    lucene/dev/branches/branch_3x/lucene/   (props changed)
    lucene/dev/branches/branch_3x/lucene/common-build.xml

Modified: lucene/dev/branches/branch_3x/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/common-build.xml?rev=1309559&r1=1309558&r2=1309559&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/lucene/common-build.xml (original)
+++ lucene/dev/branches/branch_3x/lucene/common-build.xml Wed Apr  4 19:31:15 2012
@@ -261,7 +261,7 @@
   </target>
   <target name="ivy-availability-check" unless="ivy.available">
    <echo>
-     This build requires Ivy and Ivy could not be found in your ant classpath
+     This build requires Ivy and Ivy could not be found in your ant classpath.
 
      (Due to classpath issues and the recursive nature of the Lucene/Solr 
      build system, a local copy of Ivy can not be used an loaded dynamically 
@@ -287,6 +287,11 @@
        ant -lib /some/path/you/choose clean compile
        ...
        ant -lib /some/path/you/choose clean compile
+
+     If you have already run ivy-bootstrap, and still get this message, please 
+     try using the "--noconfig" option when running ant, or editing your global
+     ant config to allow the user lib to be loaded.  See the wiki for more details:
+       http://wiki.apache.org/lucene-java/HowToContribute#antivy
     </echo>
   </target>
   <target name="ivy-fail" unless="ivy.available">