Updated Branches: refs/heads/master 18a2462e8 -> 618e58c25
CRUNCH-84: Duplicate test-only dependencies. Project: http://git-wip-us.apache.org/repos/asf/incubator-crunch/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-crunch/commit/618e58c2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-crunch/tree/618e58c2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-crunch/diff/618e58c2 Branch: refs/heads/master Commit: 618e58c25a050bd5151b2f9525b74aa4de9b739c Parents: 18a2462 Author: Matthias Friedrich <[email protected]> Authored: Wed Oct 3 10:48:39 2012 +0200 Committer: Matthias Friedrich <[email protected]> Committed: Wed Oct 3 17:07:58 2012 +0200 ---------------------------------------------------------------------- crunch-hbase/pom.xml | 6 ++++++ crunch-scrunch/pom.xml | 5 +++++ crunch-test/pom.xml | 5 +---- crunch/pom.xml | 30 ++++++++++++++++++++++++------ 4 files changed, 36 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-crunch/blob/618e58c2/crunch-hbase/pom.xml ---------------------------------------------------------------------- diff --git a/crunch-hbase/pom.xml b/crunch-hbase/pom.xml index 45aed35..8b5f31e 100644 --- a/crunch-hbase/pom.xml +++ b/crunch-hbase/pom.xml @@ -63,6 +63,12 @@ under the License. </dependency> <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-minicluster</artifactId> <scope>test</scope> http://git-wip-us.apache.org/repos/asf/incubator-crunch/blob/618e58c2/crunch-scrunch/pom.xml ---------------------------------------------------------------------- diff --git a/crunch-scrunch/pom.xml b/crunch-scrunch/pom.xml index 5e596d8..fa837b4 100644 --- a/crunch-scrunch/pom.xml +++ b/crunch-scrunch/pom.xml @@ -69,6 +69,11 @@ under the License. <artifactId>crunch-test</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> http://git-wip-us.apache.org/repos/asf/incubator-crunch/blob/618e58c2/crunch-test/pom.xml ---------------------------------------------------------------------- diff --git a/crunch-test/pom.xml b/crunch-test/pom.xml index eeb2be0..6caf8ed 100644 --- a/crunch-test/pom.xml +++ b/crunch-test/pom.xml @@ -63,12 +63,9 @@ under the License. <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> + <scope>test</scope> </dependency> - <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-all</artifactId> - </dependency> </dependencies> <build> http://git-wip-us.apache.org/repos/asf/incubator-crunch/blob/618e58c2/crunch/pom.xml ---------------------------------------------------------------------- diff --git a/crunch/pom.xml b/crunch/pom.xml index 4dc34f1..29c7263 100644 --- a/crunch/pom.xml +++ b/crunch/pom.xml @@ -108,12 +108,6 @@ under the License. </dependency> <dependency> - <groupId>org.apache.crunch</groupId> - <artifactId>crunch-test</artifactId> - <scope>test</scope> - </dependency> - - <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <scope>test</scope> <!-- only needed for LocalJobRunner --> @@ -137,6 +131,30 @@ under the License. <scope>provided</scope> </dependency> + <dependency> + <groupId>org.apache.crunch</groupId> + <artifactId>crunch-test</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build>
