Skip to content
Snippets Groups Projects
Commit 1431319e authored by Burak Yavuz's avatar Burak Yavuz Committed by Tathagata Das
Browse files

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.
parent 6502944f
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment