Skip to content

Commit

Permalink
s3p3
Browse files Browse the repository at this point in the history
  • Loading branch information
russellremple committed Feb 5, 2022
1 parent 066d09f commit c2f39db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
}

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit c2f39db

Please sign in to comment.