File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -322,6 +322,7 @@ object SparkBuild extends Build {
322
322
val excludeJruby = ExclusionRule (organization = " org.jruby" )
323
323
val excludeThrift = ExclusionRule (organization = " org.apache.thrift" )
324
324
val excludeServletApi = ExclusionRule (organization = " javax.servlet" , artifact = " servlet-api" )
325
+ val excludeJUnit = ExclusionRule (organization = " junit" )
325
326
326
327
def sparkPreviousArtifact (id : String , organization : String = " org.apache.spark" ,
327
328
version : String = " 1.0.0" , crossVersion : String = " 2.10" ): Option [sbt.ModuleID ] = {
@@ -466,7 +467,7 @@ object SparkBuild extends Build {
466
467
previousArtifact := sparkPreviousArtifact(" spark-mllib" ),
467
468
libraryDependencies ++= Seq (
468
469
" org.jblas" % " jblas" % jblasVersion,
469
- " org.scalanlp" %% " breeze" % " 0.7"
470
+ " org.scalanlp" %% " breeze" % " 0.7" excludeAll(excludeJUnit)
470
471
)
471
472
)
472
473
You can’t perform that action at this time.
0 commit comments