File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,15 @@ val scalaTestVersion = "3.0.0"
2323val connectorVersion = " 2.0.10"
2424val jUnitVersion = " 4.12"
2525val cassandraVersion = " 3.11.10"
26+ val guavaVersion = " 18.0" // required for EmbeddedCassandra based on Cassandra 3.11.x
2627
2728libraryDependencies ++= Seq (
2829 " com.datastax.spark" %% " spark-cassandra-connector-embedded" % connectorVersion % " test" exclude(
2930 " com.datastax.cassandra" , " *" ),
3031 " org.apache.cassandra" % " cassandra-all" % cassandraVersion % " test" ,
3132 " org.scalatest" %% " scalatest" % scalaTestVersion % " test" ,
32- " junit" % " junit" % " 4.12" % " test"
33+ " junit" % " junit" % " 4.12" % " test" ,
34+ " com.google.guava" % " guava" % guavaVersion % " test"
3335).map(_.excludeAll(
3436 ExclusionRule (" org.slf4j" ," log4j-over-slf4j" ),
3537 ExclusionRule (" org.slf4j" ," slf4j-log4j12" ))
You can’t perform that action at this time.
0 commit comments