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

[hbase] 02/05: HBASE-22312 Hadoop 3 profile for hbase-shaded-mapreduce should list mapreduce as a provided dependency

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

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

commit 9efde3e8b1f67cc07a53b5920fa84782a2f4670c
Author: Sean Busbey <bu...@apache.org>
AuthorDate: Thu Apr 25 10:21:39 2019 -0500

    HBASE-22312 Hadoop 3 profile for hbase-shaded-mapreduce should list mapreduce as a provided dependency
    
    (cherry picked from commit cb0bbcbab390cba7a0933e58aa3bf79a334f529b)
---
 hbase-shaded/hbase-shaded-mapreduce/pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/hbase-shaded/hbase-shaded-mapreduce/pom.xml b/hbase-shaded/hbase-shaded-mapreduce/pom.xml
index 5c04038..3531d8e 100644
--- a/hbase-shaded/hbase-shaded-mapreduce/pom.xml
+++ b/hbase-shaded/hbase-shaded-mapreduce/pom.xml
@@ -304,6 +304,17 @@
               <artifactId>hadoop-auth</artifactId>
               <scope>provided</scope>
             </dependency>
+            <dependency>
+              <groupId>org.apache.hadoop</groupId>
+              <artifactId>hadoop-mapreduce-client-core</artifactId>
+              <scope>provided</scope>
+              <exclusions>
+                <exclusion>
+                  <groupId>com.google.guava</groupId>
+                  <artifactId>guava</artifactId>
+                </exclusion>
+              </exclusions>
+            </dependency>
           </dependencies>
         </profile>
     </profiles>