You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2019/06/03 18:37:27 UTC

[hbase] branch branch-1 updated: HBASE-22519 New Hadoop 2.8 dependencies fail shaded invariants check (#282)

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

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


The following commit(s) were added to refs/heads/branch-1 by this push:
     new adc7c8d  HBASE-22519 New Hadoop 2.8 dependencies fail shaded invariants check (#282)
adc7c8d is described below

commit adc7c8de425c479e309e86b07b973d621f0ee99d
Author: Andrew Purtell <ap...@apache.org>
AuthorDate: Mon Jun 3 11:37:22 2019 -0700

    HBASE-22519 New Hadoop 2.8 dependencies fail shaded invariants check (#282)
    
    Signed-off-by: Sean Busbey <bu...@apache.org>
---
 hbase-rsgroup/pom.xml | 40 ++--------------------------------------
 pom.xml               | 10 ++++++++++
 2 files changed, 12 insertions(+), 38 deletions(-)

diff --git a/hbase-rsgroup/pom.xml b/hbase-rsgroup/pom.xml
index a7f6b8a..bab5dc3 100644
--- a/hbase-rsgroup/pom.xml
+++ b/hbase-rsgroup/pom.xml
@@ -203,44 +203,8 @@
           <artifactId>hadoop-common</artifactId>
           <exclusions>
             <exclusion>
-              <groupId>com.github.stephenc.findbugs</groupId>
-              <artifactId>findbugs-annotations</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>net.java.dev.jets3t</groupId>
-              <artifactId>jets3t</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>javax.servlet.jsp</groupId>
-              <artifactId>jsp-api</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>org.mortbay.jetty</groupId>
-              <artifactId>jetty</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>com.sun.jersey</groupId>
-              <artifactId>jersey-server</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>com.sun.jersey</groupId>
-              <artifactId>jersey-core</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>com.sun.jersey</groupId>
-              <artifactId>jersey-json</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>javax.servlet</groupId>
-              <artifactId>servlet-api</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>tomcat</groupId>
-              <artifactId>jasper-compiler</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>tomcat</groupId>
-              <artifactId>jasper-runtime</artifactId>
+              <groupId>org.apache.htrace</groupId>
+              <artifactId>htrace-core</artifactId>
             </exclusion>
           </exclusions>
         </dependency>
diff --git a/pom.xml b/pom.xml
index 8fb4518..0fb4280 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2283,6 +2283,10 @@
                 <groupId>net.minidev</groupId>
                 <artifactId>json-smart</artifactId>
               </exclusion>
+              <exclusion>
+                <groupId>com.nimbusds</groupId>
+                <artifactId>nimbus-jose-jwt</artifactId>
+              </exclusion>
             </exclusions>
           </dependency>
           <dependency>
@@ -2316,6 +2320,12 @@
             <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-client</artifactId>
             <version>${hadoop-two.version}</version>
+            <exclusions>
+              <exclusion>
+                <groupId>com.squareup.okhttp</groupId>
+                <artifactId>okhttp</artifactId>
+              </exclusion>
+            </exclusions>
           </dependency>
           <!-- This was marked as test dep in earlier pom, but was scoped compile.
             Where do we actually need it? -->