This is an automated email from the ASF dual-hosted git repository. busbey pushed a commit to branch branch-2 in repository https://gitbox.apache.org/repos/asf/hbase.git
commit 89db10abd62000aed18eb5285b00dbc3ac898452 Author: Sean Busbey <[email protected]> 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 d68a286..998573e 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>
