You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by ma...@apache.org on 2007/05/13 18:56:18 UTC

svn commit: r537639 - /incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java

Author: maartenc
Date: Sun May 13 11:56:18 2007
New Revision: 537639

URL: http://svn.apache.org/viewvc?view=rev&rev=537639
Log:
Log a nice message when the org.apache.ivy.plugins.matcher.GlobPatternMatcher class was not found.

Modified:
    incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java

Modified: incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java?view=diff&rev=537639&r1=537638&r2=537639
==============================================================================
--- incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java (original)
+++ incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java Sun May 13 11:56:18 2007
@@ -187,6 +187,7 @@
 			addMatcher((PatternMatcher) instanceField.get(null));
 		} catch (Exception e) {
 			// ignore: the matcher isn't on the classpath
+    		Message.info("impossible to define glob matcher: org.apache.ivy.plugins.matcher.GlobPatternMatcher was not found on the classpath");
 		}
         
         addReportOutputter(new XmlReportOutputter());