Repository: spark Updated Branches: refs/heads/branch-1.5 e26dc9642 -> f33e277f9
[HOTFIX][STREAMING] Add mockito to fix the compilation error Added mockito to the test scope to fix the compilation error in branch 1.5 Author: Shixiong Zhu <[email protected]> Closes #9782 from zsxwing/1.5-hotfix. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/f33e277f Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f33e277f Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f33e277f Branch: refs/heads/branch-1.5 Commit: f33e277f9a47b6e13185cd75450c89519589868e Parents: e26dc96 Author: Shixiong Zhu <[email protected]> Authored: Tue Nov 17 16:55:04 2015 -0800 Committer: Tathagata Das <[email protected]> Committed: Tue Nov 17 16:55:04 2015 -0800 ---------------------------------------------------------------------- streaming/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/f33e277f/streaming/pom.xml ---------------------------------------------------------------------- diff --git a/streaming/pom.xml b/streaming/pom.xml index 1d62191..c7c09a3 100644 --- a/streaming/pom.xml +++ b/streaming/pom.xml @@ -99,6 +99,11 @@ <artifactId>junit-interface</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> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
