Skip to content

Commit

Permalink
chore: Depend on specific version of munit to avoid scala library errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Aug 29, 2024
1 parent 409cd2c commit 03877a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,9 @@ lazy val mtest = project
List(
"org.scalameta" %% "munit" % {
if (scalaVersion.value.startsWith("2.11")) "1.0.0-M10"
else if (scalaVersion.value == "2.13.13") "1.0.0"
else if (scalaVersion.value == "2.13.12") "1.0.0-M11"
else if (scalaVersion.value == "2.13.11") "1.0.0-M10"
else V.munit
},
"io.get-coursier" % "interface" % V.coursierInterfaces,
Expand Down

0 comments on commit 03877a9

Please sign in to comment.