Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
|additional information regarding copyright ownership.
|""".stripMargin)),

// Note: Change back to BinaryAndSourceCompatible after 2.1.0 release
versionPolicyIntention := Compatibility.BinaryCompatible,
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
// Note: See discussion on non-JVM Mima in https://github.com/scala/scala-xml/pull/517
mimaBinaryIssueFilters ++= {
import com.typesafe.tools.mima.core._
Expand Down Expand Up @@ -141,14 +140,6 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.jsEnablePlugins(ScalaJSJUnitPlugin)
.nativeSettings(
crossScalaVersions := Seq("2.13.8", "2.12.15", "3.1.1"),
mimaPreviousArtifacts := {
// TODO remove this setting when 2.0.2 released
if (scalaBinaryVersion.value == "3") {
mimaPreviousArtifacts.value.filterNot(_.revision == "2.0.1")
} else {
mimaPreviousArtifacts.value
}
},
// Scala Native cannot run forked tests
Test / fork := false,
libraryDependencies += "org.scala-native" %%% "junit-runtime" % nativeVersion % Test,
Expand Down