Repository: hbase Updated Branches: refs/heads/master c30865a71 -> 34da035c5
Revert "HBASE-12909 Junit listed at compile scope instead of test (Sean Busbey)" This reverts commit c30865a71f54c6e5bf937fe7108d17ba1e173e90. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/34da035c Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/34da035c Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/34da035c Branch: refs/heads/master Commit: 34da035c5d10ad48ab32b0d0a459cddacc27f697 Parents: c30865a Author: Enis Soztutar <[email protected]> Authored: Sun Jan 25 16:48:29 2015 -0800 Committer: Enis Soztutar <[email protected]> Committed: Sun Jan 25 16:48:29 2015 -0800 ---------------------------------------------------------------------- hbase-testing-util/pom.xml | 10 ---------- pom.xml | 4 ++-- 2 files changed, 2 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/34da035c/hbase-testing-util/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-testing-util/pom.xml b/hbase-testing-util/pom.xml index 300721b..624b205 100644 --- a/hbase-testing-util/pom.xml +++ b/hbase-testing-util/pom.xml @@ -109,16 +109,6 @@ <scope>compile</scope> </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-all</artifactId> - <scope>compile</scope> - </dependency> - <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> http://git-wip-us.apache.org/repos/asf/hbase/blob/34da035c/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 35e56a8..200a165 100644 --- a/pom.xml +++ b/pom.xml @@ -1521,11 +1521,13 @@ <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>${hamcrest.version}</version> + <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>${mockito-all.version}</version> + <scope>test</scope> </dependency> <dependency> <groupId>org.apache.htrace</groupId> @@ -1555,12 +1557,10 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> - <scope>test</scope> </dependency> </dependencies> <!--
