Author: hibou
Date: Wed Aug 15 11:28:22 2012
New Revision: 1373338
URL: http://svn.apache.org/viewvc?rev=1373338&view=rev
Log:
IVY-1353: fix the name of the 'ignore' circular dependency strategy (Thanks to
Carl Quinn)
Modified:
ant/ivy/core/trunk/CHANGES.txt
ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/circular/IgnoreCircularDependencyStrategy.java
Modified: ant/ivy/core/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/ant/ivy/core/trunk/CHANGES.txt?rev=1373338&r1=1373337&r2=1373338&view=diff
==============================================================================
--- ant/ivy/core/trunk/CHANGES.txt (original)
+++ ant/ivy/core/trunk/CHANGES.txt Wed Aug 15 11:28:22 2012
@@ -133,6 +133,7 @@ for detailed view of each issue, please
- FIX: ivy:buildlist task confused by extends feature using two parents
(IVY-1363) (thanks to Mitch Gitman and Jean-Louis Boudart)
- FIX: ivy.xml extends feature complains about Windows filesystem path
(IVY-1359) (thanks to Mitch Gitman and Jean-Louis Boudart)
- FIX: buildlist task chokes on absolute path to parent Ivy module (IVY-1364)
(thanks to Mitch Gitman and Jean-Louis Boudart)
+- FIX: The ignore circular dependency strategy is clobbering the warn strategy
(IVY-1353) (Thanks to Carl Quinn)
- NEW: Support Conditional Setting of a Property (IVY-1367)
Modified:
ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/circular/IgnoreCircularDependencyStrategy.java
URL:
http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/circular/IgnoreCircularDependencyStrategy.java?rev=1373338&r1=1373337&r2=1373338&view=diff
==============================================================================
---
ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/circular/IgnoreCircularDependencyStrategy.java
(original)
+++
ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/circular/IgnoreCircularDependencyStrategy.java
Wed Aug 15 11:28:22 2012
@@ -30,7 +30,7 @@ public final class IgnoreCircularDepende
}
private IgnoreCircularDependencyStrategy() {
- super("warn");
+ super("ignore");
}
protected void logCircularDependency(ModuleRevisionId[] mrids) {