Repository: hbase Updated Branches: refs/heads/master a4be1b84e -> c30865a71
HBASE-12909 Junit listed at compile scope instead of test (Sean Busbey) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c30865a7 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c30865a7 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c30865a7 Branch: refs/heads/master Commit: c30865a71f54c6e5bf937fe7108d17ba1e173e90 Parents: a4be1b8 Author: Enis Soztutar <[email protected]> Authored: Sun Jan 25 16:06:32 2015 -0800 Committer: Enis Soztutar <[email protected]> Committed: Sun Jan 25 16:06:32 2015 -0800 ---------------------------------------------------------------------- hbase-testing-util/pom.xml | 10 ++++++++++ pom.xml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/c30865a7/hbase-testing-util/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-testing-util/pom.xml b/hbase-testing-util/pom.xml index 624b205..300721b 100644 --- a/hbase-testing-util/pom.xml +++ b/hbase-testing-util/pom.xml @@ -109,6 +109,16 @@ <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/c30865a7/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 200a165..35e56a8 100644 --- a/pom.xml +++ b/pom.xml @@ -1521,13 +1521,11 @@ <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> @@ -1557,10 +1555,12 @@ <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> <!--
