You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by es...@apache.org on 2007/03/09 05:36:06 UTC

svn commit: r516292 - /portals/pluto/trunk/pluto-portal-driver-impl/pom.xml

Author: esm
Date: Thu Mar  8 20:36:05 2007
New Revision: 516292

URL: http://svn.apache.org/viewvc?view=rev&rev=516292
Log:
Fixed spring-beans and spring-web from pulling in logging impls into the pluto portal.

Modified:
    portals/pluto/trunk/pluto-portal-driver-impl/pom.xml   (contents, props changed)

Modified: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/pom.xml?view=diff&rev=516292&r1=516291&r2=516292
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/pom.xml Thu Mar  8 20:36:05 2007
@@ -86,6 +86,12 @@
             <artifactId>spring-beans</artifactId>
             <version>${springframework.version}</version>
             <scope>compile</scope>
+            <exclusions>
+              <exclusion>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging</artifactId>
+              </exclusion>
+            </exclusions>
         </dependency>
         
         <dependency>
@@ -93,6 +99,12 @@
             <artifactId>spring-web</artifactId>
             <version>${springframework.version}</version>
             <scope>compile</scope>
+            <exclusions>
+              <exclusion>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging</artifactId>
+              </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 

Propchange: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native