From c2f39db6dc71d1e4f4656ae89b67cd8ac8eca727 Mon Sep 17 00:00:00 2001 From: Russ Remple Date: Fri, 4 Feb 2022 22:33:41 -0800 Subject: [PATCH] s3p3 --- build.sbt | 2 +- project/Dependencies.scala | 2 +- project/plugins.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 4671689..839a7de 100644 --- a/build.sbt +++ b/build.sbt @@ -50,7 +50,7 @@ def commonSettings(subProject: Option[String]): Seq[Setting[_]] = { Test / publishArtifact := false, // Disable coverage for Scala 2.11 -- sbt-scoverage no longer supports it - coverageEnabled := scalaBinaryVersion.value != "2.11" + coverageEnabled := (if (scalaBinaryVersion.value == "2.11") false else coverageEnabled.value) ) } diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 7e366ca..ea5703e 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -8,7 +8,7 @@ object Dependencies { final val Scala_2_11 = "2.11.12" final val Scala_2_12 = "2.12.12" final val Scala_2_13 = "2.13.6" - final val Scala_3 = "3.1.0" + final val Scala_3 = "3.1.1" final private val ScalaTest_2_2 = "2.2.6" diff --git a/project/plugins.sbt b/project/plugins.sbt index b327200..f8729fa 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.0.1") -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.0-M3") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.0-M4") addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.7") addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.9.0")