Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 79454 invoked from network); 7 Apr 2004 12:11:22 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 7 Apr 2004 12:11:22 -0000 Received: (qmail 76874 invoked by uid 500); 7 Apr 2004 12:11:17 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 76825 invoked by uid 500); 7 Apr 2004 12:11:16 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 76800 invoked by uid 500); 7 Apr 2004 12:11:16 -0000 Received: (qmail 76795 invoked from network); 7 Apr 2004 12:11:16 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 7 Apr 2004 12:11:15 -0000 Received: (qmail 79386 invoked by uid 1539); 7 Apr 2004 12:11:17 -0000 Date: 7 Apr 2004 12:11:17 -0000 Message-ID: <20040407121117.79385.qmail@minotaur.apache.org> From: peterreilly@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N peterreilly 2004/04/07 05:11:17 Modified: src/main/org/apache/tools/ant UnknownElement.java Log: remove refernce to optional.jar in "unable to create task/type" message Obtained from: Jack J. Woehr Revision Changes Path 1.79 +8 -6 ant/src/main/org/apache/tools/ant/UnknownElement.java Index: UnknownElement.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/UnknownElement.java,v retrieving revision 1.78 retrieving revision 1.79 diff -u -r1.78 -r1.79 --- UnknownElement.java 9 Mar 2004 16:47:59 -0000 1.78 +++ UnknownElement.java 7 Apr 2004 12:11:17 -0000 1.79 @@ -458,12 +458,14 @@ + " and this is not found at the right place in the classpath." + lSep + " Fix: check the documentation for dependencies." + lSep + " Fix: declare the task." + lSep - + " - The task is an Ant optional task and optional.jar is absent" + lSep - + " Fix: look for optional.jar in ANT_HOME/lib, download if needed" + lSep - + " - The task was not built into optional.jar as dependent" + lSep - + " libraries were not found at build time." + lSep - + " Fix: look in the JAR to verify, then rebuild with the needed" + lSep - + " libraries, or download a release version from apache.org" + lSep + + " - The task is an Ant optional task and the JAR file and/or libraries" + lSep + + " implementing the functionality were not found at the time you" + lSep + + " yourself built your installation of Ant from the Ant sources." + lSep + + " Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the" + lSep + + " task and make sure it contains more than merely a META-INF/MANIFEST.MF." + lSep + + " If all it contains is the manifest, then rebuild Ant with the needed" + lSep + + " libraries present in ${ant.home}/lib/optional/ , or alternatively," + lSep + + " download a pre-built release version from apache.org" + lSep + " - The build file was written for a later version of Ant" + lSep + " Fix: upgrade to at least the latest release version of Ant" + lSep + " - The task is not an Ant core or optional task " + lSep --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org