Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 4887 invoked from network); 28 Nov 2007 17:44:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Nov 2007 17:44:08 -0000 Received: (qmail 60872 invoked by uid 500); 28 Nov 2007 17:43:55 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 60829 invoked by uid 500); 28 Nov 2007 17:43:55 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 60810 invoked by uid 99); 28 Nov 2007 17:43:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Nov 2007 09:43:55 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Nov 2007 17:44:04 +0000 Received: by brutus.apache.org (Postfix, from userid 33) id DDA2E71424E; Wed, 28 Nov 2007 09:43:38 -0800 (PST) From: bugzilla@apache.org To: dev@ant.apache.org Subject: DO NOT REPLY [Bug 43888] - Could not create a directory In-Reply-To: X-Bugzilla-Reason: AssignedTo Message-Id: <20071128174338.DDA2E71424E@brutus.apache.org> Date: Wed, 28 Nov 2007 09:43:38 -0800 (PST) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=43888 stevel@apache.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO Summary|[antlib:org.apache.tools.ant|Could not create a directory |] Could not load definitions| |from resource | |org/apache/tools/ant/antlib.| |xml. It could not be found. | ------- Additional Comments From stevel@apache.org 2007-11-28 09:43 ------- These are unrelated issues. The message "Could not load definitions from resource org/apache/tools/ant/antlib.xml." is an early warning that a an XML namespace was encountered, and there was no matching resource there at the time the document was parsed. This is not an error until you get to the task/type use. the real error is BUILD FAILED /cmdev_src/neu/build.xml:16: Directory /cmdev_src/neu/build/compile creation was not successful for an unknown reason at org.apache.tools.ant.taskdefs.Mkdir.execute(Mkdir.java:64) and that line calls File.mkdirs(). Which, from javadocs says. Creates the directory named by this abstract pathname, including any necessary but nonexistent parent directories. Note that if this operation fails it may have succeeded in creating some of the necessary parent directories. Returns: true if and only if the directory was created, along with all necessary parent directories; false otherwise So. Ant could not create the directory. no information why not is given by the API call. Something is wrong with your machine. Try creating the same directory by hand. mdkir /cmdev_src/neu/build/compile If it fails, you may get more diagnostics. There may be a file of that name, you may not have the right permissions. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org