HBASE-16682 Fix Shell tests failure. NoClassDefFoundError for MiniKdc. Change-Id: I75b5dde104f716f173a5a41d43f7b4c2b8ba1f39
Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/5f7e642f Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/5f7e642f Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/5f7e642f Branch: refs/heads/hbase-14439 Commit: 5f7e642fed2e393831f630233e93bd20801ec70a Parents: da37fd9 Author: Apekshit Sharma <[email protected]> Authored: Thu Sep 22 02:22:36 2016 -0700 Committer: Apekshit Sharma <[email protected]> Committed: Mon Sep 26 02:05:21 2016 -0700 ---------------------------------------------------------------------- hbase-shell/pom.xml | 10 +++++++++- hbase-testing-util/pom.xml | 8 ++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/5f7e642f/hbase-shell/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-shell/pom.xml b/hbase-shell/pom.xml index 0f9a5a6..24f067d 100644 --- a/hbase-shell/pom.xml +++ b/hbase-shell/pom.xml @@ -250,7 +250,7 @@ <dependency> <groupId>org.apache.htrace</groupId> <artifactId>htrace-core</artifactId> - </dependency> + </dependency> </dependencies> <profiles> <profile> @@ -352,6 +352,10 @@ <artifactId>hadoop-minicluster</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-minikdc</artifactId> + </dependency> </dependencies> <build> <plugins> @@ -401,6 +405,10 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-minicluster</artifactId> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-minikdc</artifactId> + </dependency> </dependencies> <build> <plugins> http://git-wip-us.apache.org/repos/asf/hbase/blob/5f7e642f/hbase-testing-util/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-testing-util/pom.xml b/hbase-testing-util/pom.xml index 79411ec..7ce4da2 100644 --- a/hbase-testing-util/pom.xml +++ b/hbase-testing-util/pom.xml @@ -177,6 +177,10 @@ <artifactId>hadoop-minicluster</artifactId> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-minikdc</artifactId> + </dependency> </dependencies> </profile> <!-- @@ -205,6 +209,10 @@ <artifactId>hadoop-minicluster</artifactId> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-minikdc</artifactId> + </dependency> </dependencies> </profile> </profiles>
