You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by ma...@apache.org on 2019/07/16 20:06:07 UTC

[gora] branch master updated: GORA 616 Fix Multiple slf4j conflict issue

This is an automated email from the ASF dual-hosted git repository.

madhawa pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
     new 1be5841  GORA 616 Fix Multiple slf4j conflict issue
1be5841 is described below

commit 1be58412bc5a221f14bc92f05fac70d1f0582f4e
Author: Chanaka Balasooriya <ch...@gmail.com>
AuthorDate: Wed Jul 17 00:17:34 2019 +0530

    GORA 616 Fix Multiple slf4j conflict issue
---
 gora-tutorial/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gora-tutorial/pom.xml b/gora-tutorial/pom.xml
index fe46e44..cac29c1 100644
--- a/gora-tutorial/pom.xml
+++ b/gora-tutorial/pom.xml
@@ -111,6 +111,12 @@
     <dependency>
       <groupId>org.apache.gora</groupId>
       <artifactId>gora-couchdb</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-simple</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
     <dependency>
@@ -121,6 +127,12 @@
     <dependency>
       <groupId>org.apache.gora</groupId>
       <artifactId>gora-solr</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.logging.log4j</groupId>
+          <artifactId>log4j-slf4j-impl</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
     <dependency>