Repository: hbase Updated Branches: refs/heads/branch-1.0 c4c50a565 -> 7947de628
HBASE-13963 Do not leak jdk.tools dependency from hbase-annotations Signed-off-by: Sean Busbey <[email protected]> Conflicts: hbase-common/pom.xml Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7947de62 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7947de62 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7947de62 Branch: refs/heads/branch-1.0 Commit: 7947de62853794354dc423c72d1496081af0ef16 Parents: c4c50a5 Author: Gábor Lipták <[email protected]> Authored: Wed Jun 24 22:10:13 2015 -0400 Committer: Sean Busbey <[email protected]> Committed: Tue Mar 8 10:11:14 2016 -0800 ---------------------------------------------------------------------- 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/7947de62/hbase-client/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-client/pom.xml b/hbase-client/pom.xml index 770b60c..bce9030 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/7947de62/hbase-common/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-common/pom.xml b/hbase-common/pom.xml index 260b268..746ad93 100644 --- a/hbase-common/pom.xml +++ b/hbase-common/pom.xml @@ -225,6 +225,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/7947de62/hbase-examples/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-examples/pom.xml b/hbase-examples/pom.xml index 24af59e..426b6ed 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/7947de62/hbase-hadoop2-compat/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-hadoop2-compat/pom.xml b/hbase-hadoop2-compat/pom.xml index 5198e5e..6f7c859 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/7947de62/hbase-protocol/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-protocol/pom.xml b/hbase-protocol/pom.xml index b805a96..eb8ec96 100644 --- a/hbase-protocol/pom.xml +++ b/hbase-protocol/pom.xml @@ -110,6 +110,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/7947de62/hbase-rest/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-rest/pom.xml b/hbase-rest/pom.xml index e75d215..ea60655 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/7947de62/hbase-testing-util/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-testing-util/pom.xml b/hbase-testing-util/pom.xml index e7249d4..2fdbdaf 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>
