aboutsummaryrefslogtreecommitdiff
path: root/streaming
diff options
context:
space:
mode:
authorBurak Yavuz <brkyvz@gmail.com>2015-11-09 18:53:57 -0800
committerTathagata Das <tathagata.das1565@gmail.com>2015-11-09 18:53:57 -0800
commit1431319e5bc46c7225a8edeeec482816d14a83b8 (patch)
treefdb3098311d05f2b89ddc535662d084d7fc85406 /streaming
parent6502944f39893b9dfb472f8406d5f3a02a316eff (diff)
downloadspark-1431319e5bc46c7225a8edeeec482816d14a83b8.tar.gz
spark-1431319e5bc46c7225a8edeeec482816d14a83b8.tar.bz2
spark-1431319e5bc46c7225a8edeeec482816d14a83b8.zip
Add mockito as an explicit test dependency to spark-streaming
While sbt successfully compiles as it properly pulls the mockito dependency, maven builds have broken. We need this in ASAP. tdas Author: Burak Yavuz <brkyvz@gmail.com> Closes #9584 from brkyvz/fix-master.
Diffstat (limited to 'streaming')
-rw-r--r--streaming/pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/streaming/pom.xml b/streaming/pom.xml
index 145c8a7321..435e16db13 100644
--- a/streaming/pom.xml
+++ b/streaming/pom.xml
@@ -93,6 +93,11 @@
<artifactId>selenium-java</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>