This is an automated email from the ASF dual-hosted git repository. busbey pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/hbase.git
commit 91101213f48fd0cbcae338227406a27782b197a0 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 6aeb2a3..b5e6ecd 100644 --- a/hbase-shaded/hbase-shaded-mapreduce/pom.xml +++ b/hbase-shaded/hbase-shaded-mapreduce/pom.xml @@ -308,6 +308,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>
