From f4f51aa187859fbdcdaa704a22817511df3434da Mon Sep 17 00:00:00 2001 From: "Aaron S. Hawley" Date: Mon, 5 Feb 2018 17:06:17 -0500 Subject: [PATCH] Update JUnit 4.12 and junit-interface 0.11 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 629f66247..b63b3c6ad 100644 --- a/build.sbt +++ b/build.sbt @@ -55,8 +55,8 @@ lazy val xml = crossProject.in(file(".")) // there is currently no previous released JS version, therefore MiMa is enabled only on JVM mimaPreviousVersion := Some("1.0.6"), - libraryDependencies += "junit" % "junit" % "4.11" % "test", - libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test", + libraryDependencies += "junit" % "junit" % "4.12" % "test", + libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test", libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.5" % "test", libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml_${scalaBinaryVersion.value}") )