From notifications-return-9819-apmail-ant-notifications-archive=ant.apache.org@ant.apache.org Sat Sep 05 15:23:13 2009 Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 8262 invoked from network); 5 Sep 2009 15:23:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 Sep 2009 15:23:13 -0000 Received: (qmail 76184 invoked by uid 500); 5 Sep 2009 15:23:13 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 76132 invoked by uid 500); 5 Sep 2009 15:23:13 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 76123 invoked by uid 99); 5 Sep 2009 15:23:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Sep 2009 15:23:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Sep 2009 15:23:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 511CE23888E7; Sat, 5 Sep 2009 15:22:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r811664 - in /ant/ivy/core/trunk: CHANGES.txt src/java/org/apache/ivy/core/settings/XmlSettingsParser.java Date: Sat, 05 Sep 2009 15:22:49 -0000 To: notifications@ant.apache.org From: gscokart@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090905152249.511CE23888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gscokart Date: Sat Sep 5 15:22:42 2009 New Revision: 811664 URL: http://svn.apache.org/viewvc?rev=811664&view=rev Log: Trace a message when a property file referenced from the settings doesn't exixts (IVY-1074) Modified: ant/ivy/core/trunk/CHANGES.txt ant/ivy/core/trunk/src/java/org/apache/ivy/core/settings/XmlSettingsParser.java Modified: ant/ivy/core/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/CHANGES.txt?rev=811664&r1=811663&r2=811664&view=diff ============================================================================== --- ant/ivy/core/trunk/CHANGES.txt (original) +++ ant/ivy/core/trunk/CHANGES.txt Sat Sep 5 15:22:42 2009 @@ -84,7 +84,7 @@ James P. White Tom Widmer John Williams - Chris Wood + Chris Wood Patrick Woodworth Jaroslaw Wypychowski Aleksey Zhukov @@ -97,6 +97,8 @@ - FIX: Change org.apache to commons-cli at jdbc-example (IVY-1109) - FIX: Fixed name snapshots are not updated even if they are marked as changing and the publication date is changed in repo (IVY-938) +- IMPROVEMENT: Trace a message when a property file referenced from the settings doesn't exixts (IVY-1074) + 2.1.0-rc2 ===================================== - DOCUMENTATION: not all attributes of publish task are documented (IVY-963) (thanks to Jon Schneider) Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/core/settings/XmlSettingsParser.java URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/core/settings/XmlSettingsParser.java?rev=811664&r1=811663&r2=811664&view=diff ============================================================================== --- ant/ivy/core/trunk/src/java/org/apache/ivy/core/settings/XmlSettingsParser.java (original) +++ ant/ivy/core/trunk/src/java/org/apache/ivy/core/settings/XmlSettingsParser.java Sat Sep 5 15:22:42 2009 @@ -472,7 +472,7 @@ URL fileUrl = urlFromFileAttribute(propFilePath); ivy.loadProperties(fileUrl, override); } catch (FileNotFoundException e) { - // ignore... + Message.verbose("Unable to find property file: " + propFilePath); } } else if (environmentPrefix != null) { ivy.getVariableContainer().setEnvironmentPrefix(environmentPrefix);