You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2018/01/19 23:18:30 UTC

hbase git commit: HBASE-19829 hadoop-minicluster pulls zookeeper:test-jar:tests 3.4.6

Repository: hbase
Updated Branches:
  refs/heads/master 4bfdcaa3f -> 11d6e6b1e


HBASE-19829 hadoop-minicluster pulls zookeeper:test-jar:tests 3.4.6

Signed-off-by: tedyu <yu...@gmail.com>


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

Branch: refs/heads/master
Commit: 11d6e6b1e6434a5d934d58764188b7385f415484
Parents: 4bfdcaa
Author: Artem Ervits <ge...@gmail.com>
Authored: Fri Jan 19 15:15:04 2018 -0500
Committer: tedyu <yu...@gmail.com>
Committed: Fri Jan 19 15:18:22 2018 -0800

----------------------------------------------------------------------
 hbase-endpoint/pom.xml     | 4 ++++
 hbase-http/pom.xml         | 4 ++++
 hbase-mapreduce/pom.xml    | 4 ++++
 hbase-server/pom.xml       | 4 ++++
 hbase-shell/pom.xml        | 4 ++++
 hbase-testing-util/pom.xml | 4 ++++
 hbase-thrift/pom.xml       | 4 ++++
 7 files changed, 28 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/11d6e6b1/hbase-endpoint/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-endpoint/pom.xml b/hbase-endpoint/pom.xml
index ceeb277..d24ea7b 100644
--- a/hbase-endpoint/pom.xml
+++ b/hbase-endpoint/pom.xml
@@ -307,6 +307,10 @@
               <groupId>com.google.guava</groupId>
               <artifactId>guava</artifactId>
             </exclusion>
+            <exclusion>
+              <groupId>org.apache.zookeeper</groupId>
+              <artifactId>zookeeper</artifactId>
+            </exclusion>
           </exclusions>
         </dependency>
         <!-- Hadoop needs Netty 3.x at test scope for the minicluster -->

http://git-wip-us.apache.org/repos/asf/hbase/blob/11d6e6b1/hbase-http/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-http/pom.xml b/hbase-http/pom.xml
index a152a66..f1951e8 100644
--- a/hbase-http/pom.xml
+++ b/hbase-http/pom.xml
@@ -377,6 +377,10 @@
               <groupId>com.google.guava</groupId>
               <artifactId>guava</artifactId>
             </exclusion>
+            <exclusion>
+              <groupId>org.apache.zookeeper</groupId>
+              <artifactId>zookeeper</artifactId>
+            </exclusion>
           </exclusions>
           <scope>test</scope>
         </dependency>

http://git-wip-us.apache.org/repos/asf/hbase/blob/11d6e6b1/hbase-mapreduce/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-mapreduce/pom.xml b/hbase-mapreduce/pom.xml
index 38a0684..4920d81 100644
--- a/hbase-mapreduce/pom.xml
+++ b/hbase-mapreduce/pom.xml
@@ -405,6 +405,10 @@
               <groupId>org.apache.htrace</groupId>
               <artifactId>htrace-core</artifactId>
             </exclusion>
+            <exclusion>
+              <groupId>org.apache.zookeeper</groupId>
+              <artifactId>zookeeper</artifactId>
+            </exclusion>
           </exclusions>
         </dependency>
         <!-- Hadoop needs Netty 3.x at test scope for the minicluster -->

http://git-wip-us.apache.org/repos/asf/hbase/blob/11d6e6b1/hbase-server/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-server/pom.xml b/hbase-server/pom.xml
index 4fce940..49052ef 100644
--- a/hbase-server/pom.xml
+++ b/hbase-server/pom.xml
@@ -759,6 +759,10 @@
               <groupId>com.google.guava</groupId>
               <artifactId>guava</artifactId>
             </exclusion>
+            <exclusion>
+              <groupId>org.apache.zookeeper</groupId>
+              <artifactId>zookeeper</artifactId>
+            </exclusion>
           </exclusions>
         </dependency>
         <!-- Hadoop needs Netty 3.x at test scope for the minicluster -->

http://git-wip-us.apache.org/repos/asf/hbase/blob/11d6e6b1/hbase-shell/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-shell/pom.xml b/hbase-shell/pom.xml
index 15b4b6a..0f623d6 100644
--- a/hbase-shell/pom.xml
+++ b/hbase-shell/pom.xml
@@ -364,6 +364,10 @@
               <groupId>com.google.guava</groupId>
               <artifactId>guava</artifactId>
             </exclusion>
+            <exclusion>
+              <groupId>org.apache.zookeeper</groupId>
+              <artifactId>zookeeper</artifactId>
+            </exclusion>
           </exclusions>
         </dependency>
         <dependency>

http://git-wip-us.apache.org/repos/asf/hbase/blob/11d6e6b1/hbase-testing-util/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-testing-util/pom.xml b/hbase-testing-util/pom.xml
index d6e28a7..d819a6d 100644
--- a/hbase-testing-util/pom.xml
+++ b/hbase-testing-util/pom.xml
@@ -220,6 +220,10 @@
                         <groupId>com.google.guava</groupId>
                         <artifactId>guava</artifactId>
                       </exclusion>
+                      <exclusion>
+                        <groupId>org.apache.zookeeper</groupId>
+                        <artifactId>zookeeper</artifactId>
+                      </exclusion>
                     </exclusions>
                 </dependency>
                 <dependency>

http://git-wip-us.apache.org/repos/asf/hbase/blob/11d6e6b1/hbase-thrift/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-thrift/pom.xml b/hbase-thrift/pom.xml
index 7410d99..5d582de 100644
--- a/hbase-thrift/pom.xml
+++ b/hbase-thrift/pom.xml
@@ -538,6 +538,10 @@
               <groupId>com.google.guava</groupId>
               <artifactId>guava</artifactId>
             </exclusion>
+            <exclusion>
+              <groupId>org.apache.zookeeper</groupId>
+              <artifactId>zookeeper</artifactId>
+            </exclusion>
           </exclusions>
         </dependency>
       </dependencies>