You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2015/06/26 15:52:44 UTC

hbase git commit: HBASE-13963 Do not leak jdk.tools dependency from hbase-annotations

Repository: hbase
Updated Branches:
  refs/heads/master 2ed058554 -> 5826bf2a7


HBASE-13963 Do not leak jdk.tools dependency from hbase-annotations

Signed-off-by: Sean Busbey <bu...@apache.org>


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

Branch: refs/heads/master
Commit: 5826bf2a7cb3601fd2e99136bac408bffd826397
Parents: 2ed0585
Author: Gábor Lipták <gl...@gmail.com>
Authored: Wed Jun 24 22:10:13 2015 -0400
Committer: Sean Busbey <bu...@apache.org>
Committed: Fri Jun 26 08:48:02 2015 -0500

----------------------------------------------------------------------
 hbase-client/pom.xml         | 6 ++++++
 hbase-common/pom.xml         | 6 ++++++
 hbase-examples/pom.xml       | 6 ++++++
 hbase-hadoop2-compat/pom.xml | 6 ++++++
 hbase-protocol/pom.xml       | 6 ++++++
 hbase-rest/pom.xml           | 6 ++++++
 hbase-testing-util/pom.xml   | 6 ++++++
 7 files changed, 42 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/5826bf2a/hbase-client/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-client/pom.xml b/hbase-client/pom.xml
index 84d4162..3cef2ec 100644
--- a/hbase-client/pom.xml
+++ b/hbase-client/pom.xml
@@ -109,6 +109,12 @@
     <dependency>
       <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-annotations</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>jdk.tools</groupId>
+          <artifactId>jdk.tools</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>

http://git-wip-us.apache.org/repos/asf/hbase/blob/5826bf2a/hbase-common/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-common/pom.xml b/hbase-common/pom.xml
index 2f5e7f2..fae5f89 100644
--- a/hbase-common/pom.xml
+++ b/hbase-common/pom.xml
@@ -206,6 +206,12 @@
     <dependency>
       <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-annotations</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>jdk.tools</groupId>
+          <artifactId>jdk.tools</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>

http://git-wip-us.apache.org/repos/asf/hbase/blob/5826bf2a/hbase-examples/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-examples/pom.xml b/hbase-examples/pom.xml
index 80bd9c3..c509231 100644
--- a/hbase-examples/pom.xml
+++ b/hbase-examples/pom.xml
@@ -264,6 +264,12 @@ if we can combine these profiles somehow -->
              <dependency>
                  <groupId>org.apache.hadoop</groupId>
                  <artifactId>hadoop-annotations</artifactId>
+                 <exclusions>
+                   <exclusion>
+                     <groupId>jdk.tools</groupId>
+                     <artifactId>jdk.tools</artifactId>
+                   </exclusion>
+                 </exclusions>
              </dependency>
              <dependency>
                  <groupId>org.apache.hadoop</groupId>

http://git-wip-us.apache.org/repos/asf/hbase/blob/5826bf2a/hbase-hadoop2-compat/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-hadoop2-compat/pom.xml b/hbase-hadoop2-compat/pom.xml
index 52472b3..2b53c05 100644
--- a/hbase-hadoop2-compat/pom.xml
+++ b/hbase-hadoop2-compat/pom.xml
@@ -143,6 +143,12 @@ limitations under the License.
     <dependency>
       <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-annotations</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>jdk.tools</groupId>
+          <artifactId>jdk.tools</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>

http://git-wip-us.apache.org/repos/asf/hbase/blob/5826bf2a/hbase-protocol/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-protocol/pom.xml b/hbase-protocol/pom.xml
index fb5e0ab..bfceef8 100644
--- a/hbase-protocol/pom.xml
+++ b/hbase-protocol/pom.xml
@@ -106,6 +106,12 @@
       <dependency>
         <groupId>org.apache.hbase</groupId>
         <artifactId>hbase-annotations</artifactId>
+        <exclusions>
+          <exclusion>
+            <groupId>jdk.tools</groupId>
+            <artifactId>jdk.tools</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <!-- General dependencies -->
       <dependency>

http://git-wip-us.apache.org/repos/asf/hbase/blob/5826bf2a/hbase-rest/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-rest/pom.xml b/hbase-rest/pom.xml
index e82f029..8ca4849 100644
--- a/hbase-rest/pom.xml
+++ b/hbase-rest/pom.xml
@@ -189,6 +189,12 @@
     <dependency>
       <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-annotations</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>jdk.tools</groupId>
+          <artifactId>jdk.tools</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>

http://git-wip-us.apache.org/repos/asf/hbase/blob/5826bf2a/hbase-testing-util/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-testing-util/pom.xml b/hbase-testing-util/pom.xml
index 624b205..e6ebbe6f 100644
--- a/hbase-testing-util/pom.xml
+++ b/hbase-testing-util/pom.xml
@@ -59,6 +59,12 @@
             <artifactId>hbase-annotations</artifactId>
             <type>test-jar</type>
             <scope>compile</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>jdk.tools</groupId>
+                    <artifactId>jdk.tools</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.hbase</groupId>