Skip to content

Commit 55f9955

Browse files
authored
Merge pull request #511 from ashawley/mima-signature-checks
2 parents 5ffdbc9 + 43e9414 commit 55f9955

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
@@ -62,6 +62,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
6262
case Some((3, _)) => None
6363
case _ => Some("2.0.0-RC1")
6464
}),
65+
mimaReportSignatureProblems := true,
6566
mimaBinaryIssueFilters ++= {
6667
import com.typesafe.tools.mima.core._
6768
import com.typesafe.tools.mima.core.ProblemFilters._
@@ -72,8 +73,6 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
7273
// because we reverted #279
7374
exclude[DirectMissingMethodProblem]("scala.xml.Utility.escapeText"),
7475
exclude[MissingClassProblem]("scala.xml.Properties*"),
75-
// New MiMa checks for generic signature changes
76-
exclude[IncompatibleSignatureProblem]("*"),
7776
// afaict this is just a JDK 8 vs 16 difference, producing a false positive when
7877
// we compare classes built on JDK 16 (which we only do on CI, not at release time)
7978
// to previous-version artifacts that were built on 8. see scala/scala-xml#501

0 commit comments

Comments
 (0)