You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by an...@apache.org on 2008/02/07 16:23:40 UTC

svn commit: r619448 - /cocoon/trunk/blocks/cocoon-auth/cocoon-acegisecurity-sample/pom.xml

Author: anathaniel
Date: Thu Feb  7 07:23:39 2008
New Revision: 619448

URL: http://svn.apache.org/viewvc?rev=619448&view=rev
Log:
Add exclusions for transitive dependencies, mainly through commons-logging, on avalon-framework 4.1.3.
This gets us out of jar hell because we need the later version 4.3.1, which is split into two artefacts a-f-api and a-f-impl, using a different groupId which causes m2 to pick up both versions.

See http://archive.netbsd.se/?ml=cocoon-dev&a=2007-11&m=5764467 for more details.

Modified:
    cocoon/trunk/blocks/cocoon-auth/cocoon-acegisecurity-sample/pom.xml

Modified: cocoon/trunk/blocks/cocoon-auth/cocoon-acegisecurity-sample/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-auth/cocoon-acegisecurity-sample/pom.xml?rev=619448&r1=619447&r2=619448&view=diff
==============================================================================
--- cocoon/trunk/blocks/cocoon-auth/cocoon-acegisecurity-sample/pom.xml (original)
+++ cocoon/trunk/blocks/cocoon-auth/cocoon-acegisecurity-sample/pom.xml Thu Feb  7 07:23:39 2008
@@ -105,6 +105,12 @@
     <dependency>
       <groupId>org.acegisecurity</groupId>
       <artifactId>acegi-security</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>avalon-framework</groupId>
+          <artifactId>avalon-framework</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <!-- We are affected by MNG-2339 (http://jira.codehaus.org/browse/MNG-2339) bug.
          Adding this dependency as work-around should made Cocoon compile with Java 1.4 -->