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@1083019 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2011-03-18 19:13:02 +00:00
parent 8bee953057
commit 959f657848
2 changed files with 11 additions and 11 deletions

View File

@ -314,17 +314,17 @@
</target>
<target name="maven.ant.tasks-check">
<fail unless="maven.ant.tasks.present">
##########################################################################
<fail unless="maven.ant.tasks.present">#
##########################################################################
Maven ant tasks not found.
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"
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>
<macrodef name="m2-deploy" description="Builds a Maven artifact">

View File

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