From a7ab8083647b6e507c9afd6fc074b6e13003e08d Mon Sep 17 00:00:00 2001 From: Arsene Rei Date: Thu, 13 May 2021 14:10:23 -0700 Subject: [PATCH] Upgrade junit and set scope to test --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f1b718574..f32107261 100644 --- a/build.sbt +++ b/build.sbt @@ -82,7 +82,7 @@ lazy val commonSettings = loggingSettings ++ Seq( lazy val testSettings = Seq( libraryDependencies ++= Seq( - "junit" % "junit" % "4.12", + "junit" % "junit" % "4.13.1" % "test", "org.scalatest" %% "scalatest" % "3.1.1" % "test", "org.scalatestplus" %% "junit-4-12" % "3.1.1.0" % "test"), logBuffered in Test := false,