From 62b08faac5278d289bdaefb42ff6f65b62ce48aa Mon Sep 17 00:00:00 2001 From: Patrick Wendell <pwendell@gmail.com> Date: Wed, 8 Jan 2014 00:45:41 -0800 Subject: [PATCH] Adding mockito to maven build --- core/pom.xml | 5 +++++ pom.xml | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/core/pom.xml b/core/pom.xml index 1c52b334d0..9e5a450d57 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -170,6 +170,11 @@ <artifactId>scalatest_${scala.binary.version}</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.scalacheck</groupId> <artifactId>scalacheck_${scala.binary.version}</artifactId> diff --git a/pom.xml b/pom.xml index 9f08e8ad4e..c2b1a7795a 100644 --- a/pom.xml +++ b/pom.xml @@ -351,6 +351,12 @@ <version>1.9.1</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <scope>test</scope> + <version>1.8.5</version> + </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> -- GitLab