You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2008/12/04 16:31:37 UTC

svn commit: r723357 - /activemq/camel/trunk/components/camel-mina/pom.xml

Author: janstey
Date: Thu Dec  4 07:31:37 2008
New Revision: 723357

URL: http://svn.apache.org/viewvc?rev=723357&view=rev
Log:
CAMEL-1146 - Exclude slf4j from mina so we don't have two versions on the classpath.

Modified:
    activemq/camel/trunk/components/camel-mina/pom.xml

Modified: activemq/camel/trunk/components/camel-mina/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-mina/pom.xml?rev=723357&r1=723356&r2=723357&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-mina/pom.xml (original)
+++ activemq/camel/trunk/components/camel-mina/pom.xml Thu Dec  4 07:31:37 2008
@@ -46,6 +46,16 @@
         <dependency>
             <groupId>org.apache.mina</groupId>
             <artifactId>mina-core</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.slf4j</groupId>
+                    <artifactId>slf4j-simple</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.slf4j</groupId>
+                    <artifactId>slf4j-api</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>