We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e41604d commit dfca74fCopy full SHA for dfca74f
build.sbt
@@ -173,7 +173,11 @@ lazy val sharedSettings = MimaSettings.settings ++ Seq(
173
Test / scalacOptions ~= (_ filterNot (_ == "-Xfatal-warnings")),
174
175
autoAPIMappings := true,
176
- mimaReportSignatureProblems := true,
+ // 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
+ }),
181
mimaPreviousArtifacts := Set("org.scalacheck" %%% "scalacheck" % "1.15.4"),
182
183
publishTo := {
0 commit comments