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:32:55 UTC

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

Author: sarowe
Date: Fri Mar 18 18:32:54 2011
New Revision: 1083005

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

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

Modified: lucene/dev/trunk/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/common-build.xml?rev=1083005&r1=1083004&r2=1083005&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/common-build.xml (original)
+++ lucene/dev/trunk/lucene/common-build.xml Fri Mar 18 18:32:54 2011
@@ -315,11 +315,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>