You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by tm...@apache.org on 2006/05/08 09:12:31 UTC

svn commit: r404946 - /struts/action2/trunk/core/pom.xml

Author: tmjee
Date: Mon May  8 00:12:28 2006
New Revision: 404946

URL: http://svn.apache.org/viewcvs?rev=404946&view=rev
Log:
- easymockextension declare dependency on easymock version 1.1, but SAF actually needs easymock 2.0 for some of its test. Add an exclusion on easymockextension to exclude easymock 1.1 dependency on it 

Modified:
    struts/action2/trunk/core/pom.xml

Modified: struts/action2/trunk/core/pom.xml
URL: http://svn.apache.org/viewcvs/struts/action2/trunk/core/pom.xml?rev=404946&r1=404945&r2=404946&view=diff
==============================================================================
--- struts/action2/trunk/core/pom.xml (original)
+++ struts/action2/trunk/core/pom.xml Mon May  8 00:12:28 2006
@@ -286,6 +286,12 @@
             <artifactId>easymockclassextension</artifactId>
             <version>1.1</version>
             <scope>test</scope>
+            <exclusions>
+            	<exclusion>
+            		<groupId>easymock</groupId>
+            		<artifactId>easymock</artifactId>
+            	</exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>