You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by ma...@apache.org on 2015/10/20 11:38:15 UTC

svn commit: r1709555 - /james/project/trunk/mailbox/hbase/pom.xml

Author: matthieu
Date: Tue Oct 20 09:38:15 2015
New Revision: 1709555

URL: http://svn.apache.org/viewvc?rev=1709555&view=rev
Log:
MAILBOX-250 fix commons-logging implicit import

	It uses slf4j to jcl bridge to solve the issue


Modified:
    james/project/trunk/mailbox/hbase/pom.xml

Modified: james/project/trunk/mailbox/hbase/pom.xml
URL: http://svn.apache.org/viewvc/james/project/trunk/mailbox/hbase/pom.xml?rev=1709555&r1=1709554&r2=1709555&view=diff
==============================================================================
--- james/project/trunk/mailbox/hbase/pom.xml (original)
+++ james/project/trunk/mailbox/hbase/pom.xml Tue Oct 20 09:38:15 2015
@@ -51,6 +51,11 @@
             <scope>test</scope>
         </dependency>
         <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>jcl-over-slf4j</artifactId>
+            <version>${slf4j.version}</version>
+        </dependency>
+        <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>apache-james-mailbox-api</artifactId>
         </dependency>
@@ -80,6 +85,10 @@
                     <groupId>log4j</groupId>
                     <artifactId>log4j</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>
@@ -92,6 +101,10 @@
                     <groupId>org.jruby</groupId>
                     <artifactId>jruby-complete</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>
@@ -107,6 +120,12 @@
         <dependency>
             <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-core</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org