Repository: hbase Updated Branches: refs/heads/branch-1.3 302979a2e -> af6ebcd1a
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 <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/af6ebcd1 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/af6ebcd1 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/af6ebcd1 Branch: refs/heads/branch-1.3 Commit: af6ebcd1a2ff4ab6f4ea63ed22b554b3d71186f0 Parents: 302979a Author: Stevo SlaviÄ <[email protected]> Authored: Sun Apr 5 12:43:48 2015 +0200 Committer: Sean Busbey <[email protected]> Committed: Thu Aug 4 01:33:05 2016 -0500 ---------------------------------------------------------------------- hbase-client/pom.xml | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/af6ebcd1/hbase-client/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-client/pom.xml b/hbase-client/pom.xml index a3ba28c..d8e1437 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>
