Skip to content

Commit dfca74f

Browse files
committed
Disable Mima signature check on Scala 3.0.2
1 parent e41604d commit dfca74f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.sbt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,11 @@ lazy val sharedSettings = MimaSettings.settings ++ Seq(
173173
Test / scalacOptions ~= (_ filterNot (_ == "-Xfatal-warnings")),
174174

175175
autoAPIMappings := true,
176-
mimaReportSignatureProblems := true,
176+
// Mima signature checking stopped working after 3.0.2 upgrade, see #834
177+
mimaReportSignatureProblems := (CrossVersion.partialVersion(scalaVersion.value) match {
178+
case Some((3, _)) => false
179+
case _ => true
180+
}),
177181
mimaPreviousArtifacts := Set("org.scalacheck" %%% "scalacheck" % "1.15.4"),
178182

179183
publishTo := {

0 commit comments

Comments
 (0)