You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2011/03/18 19:36:39 UTC

svn commit: r1083006 - /lucene/dev/trunk/solr/common-build.xml

Author: sarowe
Date: Fri Mar 18 18:36:39 2011
New Revision: 1083006

URL: http://svn.apache.org/viewvc?rev=1083006&view=rev
Log:
Updated error message printed when maven-ant-tasks jar can't be found

Modified:
    lucene/dev/trunk/solr/common-build.xml

Modified: lucene/dev/trunk/solr/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/common-build.xml?rev=1083006&r1=1083005&r2=1083006&view=diff
==============================================================================
--- lucene/dev/trunk/solr/common-build.xml (original)
+++ lucene/dev/trunk/solr/common-build.xml Fri Mar 18 18:36:39 2011
@@ -562,11 +562,15 @@
 
   <target name="maven.ant.tasks-check">
     <fail unless="maven.ant.tasks.present">
-      ##################################################################
+    ##########################################################################
       Maven ant tasks not found.
-      Please make sure the maven-ant-tasks jar is in ANT_HOME/lib, or made
-      available to Ant using other mechanisms like -lib or CLASSPATH.
-      ##################################################################
+
+      Please download the Maven ant tasks JAR (maven-ant-tasks-2.1.1.jar)
+      from http://maven.apache.org/ant-tasks/download.html and add it to
+      your $HOME/.ant/lib/ directory, or to your ANT_HOME/lib/ directory, or
+      to your $CLASSPATH, or add "-lib /path/to/maven-ant-tasks-2.1.1.jar"
+      to the ant command.
+    ##########################################################################
     </fail>
   </target>