@@ -62,8 +62,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
62
62
|additional information regarding copyright ownership.
63
63
| """ .stripMargin)),
64
64
65
- // should be reverted to Compatibility.BinaryAndSourceCompatible after 2.2.0 is released
66
- versionPolicyIntention := Compatibility .None ,
65
+ versionPolicyIntention := Compatibility .BinaryCompatible ,
67
66
// Note: See discussion on non-JVM Mima in https://github.com/scala/scala-xml/pull/517
68
67
mimaBinaryIssueFilters ++= {
69
68
import com .typesafe .tools .mima .core ._
@@ -130,11 +129,15 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
130
129
}),
131
130
)
132
131
.jsSettings(
132
+ versionPolicyCheck / skip := true ,
133
+ versionCheck / skip := true ,
133
134
// Scala.js cannot run forked tests
134
135
Test / fork := false
135
136
)
136
137
.jsEnablePlugins(ScalaJSJUnitPlugin )
137
138
.nativeSettings(
139
+ versionPolicyCheck / skip := true ,
140
+ versionCheck / skip := true ,
138
141
// Scala Native cannot run forked tests
139
142
Test / fork := false ,
140
143
libraryDependencies += " org.scala-native" %%% " junit-runtime" % nativeVersion % Test ,
0 commit comments