Skip to content

Commit 9bd48bd

Browse files
committed
Enable signature check in Mima
1 parent ad0c9a2 commit 9bd48bd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build.sbt

+1-2
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,13 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
6060
case Some((3, _)) => None
6161
case _ => Some("2.0.0-RC1")
6262
}),
63+
mimaReportSignatureProblems := true,
6364
mimaBinaryIssueFilters ++= {
6465
import com.typesafe.tools.mima.core._
6566
import com.typesafe.tools.mima.core.ProblemFilters._
6667
Seq(
6768
// because we reverted #279
6869
exclude[DirectMissingMethodProblem]("scala.xml.Utility.escapeText"),
69-
// New MiMa checks for generic signature changes
70-
exclude[IncompatibleSignatureProblem]("*"),
7170
// afaict this is just a JDK 8 vs 16 difference, producing a false positive when
7271
// we compare classes built on JDK 16 (which we only do on CI, not at release time)
7372
// to previous-version artifacts that were built on 8. see scala/scala-xml#501

0 commit comments

Comments
 (0)