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);