Skip to content

Commit 25cad6a

Browse files
committed
HOTFIX: Fixing test error in maven for flume-sink.
We needed to add an explicit dependency on scalatest since this module will not get it from spark core like others do.
1 parent 08c095b commit 25cad6a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

external/flume-sink/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@
6767
<dependency>
6868
<groupId>org.scala-lang</groupId>
6969
<artifactId>scala-library</artifactId>
70-
<version>2.10.4</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.scalatest</groupId>
73+
<artifactId>scalatest_${scala.binary.version}</artifactId>
7174
</dependency>
7275
</dependencies>
7376
<build>

0 commit comments

Comments
 (0)