You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2021/04/10 08:34:54 UTC

[hbase] branch branch-2 updated: HBASE-25755 Exclude tomcat-embed-core from libthrift (#3141)

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

psomogyi pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new e1f9c7b  HBASE-25755 Exclude tomcat-embed-core from libthrift (#3141)
e1f9c7b is described below

commit e1f9c7bedad06cabb53cf2986499378da7c432a9
Author: Peter Somogyi <ps...@apache.org>
AuthorDate: Sat Apr 10 09:20:53 2021 +0200

    HBASE-25755 Exclude tomcat-embed-core from libthrift (#3141)
    
    Exclude tomcat-embed-core transitive dependency
    Remove outdated exclude rule for slf4j
    
    Signed-off-by: Pankaj <pa...@apache.org>
    Signed-off-by: Kevin Risden <kr...@apache.org>
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index aa70b8d..b97a7ab 100755
--- a/pom.xml
+++ b/pom.xml
@@ -2027,8 +2027,8 @@
         <version>${thrift.version}</version>
         <exclusions>
           <exclusion>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-simple</artifactId>
+            <groupId>org.apache.tomcat.embed</groupId>
+            <artifactId>tomcat-embed-core</artifactId>
           </exclusion>
         </exclusions>
       </dependency>