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 2016/10/04 19:44:21 UTC

hbase git commit: HBASE-16682 Fix Shell tests failure. NoClassDefFoundError for Minikdc.

Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 832050b91 -> c7007ac57


HBASE-16682 Fix Shell tests failure. NoClassDefFoundError for Minikdc.

Change-Id: I2ee3a567f0336b887b96b8d90f2159054680fe29


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c7007ac5
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c7007ac5
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c7007ac5

Branch: refs/heads/branch-1.2
Commit: c7007ac579633e8a34695d058ff586e118d7ad4a
Parents: 832050b
Author: Apekshit Sharma <ap...@apache.org>
Authored: Tue Oct 4 12:42:42 2016 -0700
Committer: Apekshit Sharma <ap...@apache.org>
Committed: Tue Oct 4 12:42:42 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/c7007ac5/hbase-shell/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-shell/pom.xml b/hbase-shell/pom.xml
index 4ff1efb..7b53808 100644
--- a/hbase-shell/pom.xml
+++ b/hbase-shell/pom.xml
@@ -251,7 +251,7 @@
     <dependency>
       <groupId>org.apache.htrace</groupId>
       <artifactId>htrace-core</artifactId>
-   </dependency>
+    </dependency>
   </dependencies>
   <profiles>
     <!-- Skip the tests in this module -->
@@ -361,6 +361,10 @@
           <artifactId>hadoop-minicluster</artifactId>
           <scope>test</scope>
         </dependency>
+        <dependency>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-minikdc</artifactId>
+        </dependency>
       </dependencies>
       <build>
         <plugins>
@@ -410,6 +414,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/c7007ac5/hbase-testing-util/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-testing-util/pom.xml b/hbase-testing-util/pom.xml
index 059d271..37d9cba 100644
--- a/hbase-testing-util/pom.xml
+++ b/hbase-testing-util/pom.xml
@@ -224,6 +224,10 @@
                     <artifactId>hadoop-minicluster</artifactId>
                     <scope>compile</scope>
                 </dependency>
+                <dependency>
+                    <groupId>org.apache.hadoop</groupId>
+                    <artifactId>hadoop-minikdc</artifactId>
+                </dependency>
             </dependencies>
         </profile>
         <!--
@@ -252,6 +256,10 @@
                     <artifactId>hadoop-minicluster</artifactId>
                     <scope>compile</scope>
                 </dependency>
+                <dependency>
+                    <groupId>org.apache.hadoop</groupId>
+                    <artifactId>hadoop-minikdc</artifactId>
+                </dependency>
             </dependencies>
         </profile>
     </profiles>