You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by sy...@apache.org on 2016/08/17 18:34:08 UTC

[02/50] [abbrv] hbase git commit: HBASE-16355 Invalid hbase-common test-jar dependency scope

HBASE-16355 Invalid hbase-common test-jar dependency scope

hbase-client has hbase-common test-jar as dependency in compile scope, while it should be test scope instead.
This patch fixes the bug.

closes #12

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/544dc1e5
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/544dc1e5
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/544dc1e5

Branch: refs/heads/hbase-12439
Commit: 544dc1e55851e42a24bd14eb9efb9b21c2447d6b
Parents: 6fdf3aa
Author: Stevo Slavi\u0107 <ss...@gmail.com>
Authored: Sun Apr 5 12:43:48 2015 +0200
Committer: Sean Busbey <bu...@apache.org>
Committed: Thu Aug 4 01:17:51 2016 -0500

----------------------------------------------------------------------
 hbase-client/pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/544dc1e5/hbase-client/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-client/pom.xml b/hbase-client/pom.xml
index e74e0d5..7fc4672 100644
--- a/hbase-client/pom.xml
+++ b/hbase-client/pom.xml
@@ -130,6 +130,7 @@
       <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-common</artifactId>
       <type>test-jar</type>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>