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:35:26 UTC

[hbase] branch branch-2.4 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.4
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit d452390ef624573ef4ecd5ce22b44dc910c4a4c6
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 f8adbd0..674d0d6 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>