Skip to content

Commit 5ee7224

Browse files
committed
fix versionPolicyCheck on JDK 15
1 parent ebe2d37 commit 5ee7224

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.sbt

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
7474
exclude[DirectMissingMethodProblem]("scala.xml.Utility.escapeText"),
7575
// New MiMa checks for generic signature changes
7676
exclude[IncompatibleSignatureProblem]("*"),
77+
// afaict this is just a JDK 8 vs 15 difference, producing a false positive when
78+
// we compare classes built on JDK 15 (which we only do on CI, not at release time)
79+
// to previous-version artifacts that were built on 8. see scala/scala-xml#501
80+
exclude[DirectMissingMethodProblem]("scala.xml.include.sax.XIncluder.declaration"),
7781
)
7882
},
7983

0 commit comments

Comments
 (0)