Updated error message printed when maven-ant-tasks jar can't be found

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1083006 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2011-03-18 18:36:39 +00:00
parent f121cc6c0b
commit ca847ed85c
1 changed files with 8 additions and 4 deletions

View File

@ -562,11 +562,15 @@
<target name="maven.ant.tasks-check"> <target name="maven.ant.tasks-check">
<fail unless="maven.ant.tasks.present"> <fail unless="maven.ant.tasks.present">
################################################################## ##########################################################################
Maven ant tasks not found. 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> </fail>
</target> </target>