@@ -32,6 +32,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
32
32
.jvmSettings(ScalaModulePlugin .scalaModuleOsgiSettings)
33
33
.settings(
34
34
name := " scala-xml" ,
35
+ scalaModuleAutomaticModuleName := Some (" scala.xml" ),
35
36
scalacOptions ++= (CrossVersion .partialVersion(scalaVersion.value) match {
36
37
case Some ((3 , _)) =>
37
38
Seq (" -language:Scala2" )
@@ -55,6 +56,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
55
56
|additional information regarding copyright ownership.
56
57
| """ .stripMargin)),
57
58
59
+ // Note: See discussion on Mima in https://github.com/scala/scala-xml/pull/517
58
60
scalaModuleMimaPreviousVersion := (CrossVersion .partialVersion(scalaVersion.value) match {
59
61
// pending resolution of https://github.com/scalacenter/sbt-version-policy/issues/62
60
62
case Some ((3 , _)) => None
@@ -65,8 +67,12 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
65
67
import com .typesafe .tools .mima .core ._
66
68
import com .typesafe .tools .mima .core .ProblemFilters ._
67
69
Seq (
70
+ // Deprecated in 2.0.0-RC2
71
+ exclude[MissingClassProblem ](" scala.xml.factory.LoggedNodeFactory" ),
72
+ exclude[DirectMissingMethodProblem ](" scala.xml.parsing.MarkupHandler.log" ),
68
73
// because we reverted #279
69
74
exclude[DirectMissingMethodProblem ](" scala.xml.Utility.escapeText" ),
75
+ exclude[MissingClassProblem ](" scala.xml.Properties*" ),
70
76
// afaict this is just a JDK 8 vs 16 difference, producing a false positive when
71
77
// we compare classes built on JDK 16 (which we only do on CI, not at release time)
72
78
// to previous-version artifacts that were built on 8. see scala/scala-xml#501
@@ -121,7 +127,6 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
121
127
)
122
128
.jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin ))
123
129
.nativeSettings(
124
- scalaModuleMimaPreviousVersion := None , // No such release yet
125
130
// Scala Native cannot run forked tests
126
131
Test / fork := false ,
127
132
libraryDependencies += " org.scala-native" %%% " junit-runtime" % nativeVersion % Test ,
0 commit comments