We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab1ccf0 commit c61ce2bCopy full SHA for c61ce2b
build.sbt
@@ -118,6 +118,10 @@ lazy val compat = new MultiScalaCrossProject(
118
addCompilerPlugin(
119
"org.scala-native" % "junit-plugin" % nativeVersion cross CrossVersion.full
120
),
121
+ mimaPreviousArtifacts := (CrossVersion.partialVersion(scalaVersion.value) match {
122
+ case Some((3, 1)) => mimaPreviousArtifacts.value.filter(_.revision != "2.6.0")
123
+ case _ => mimaPreviousArtifacts.value
124
+ }),
125
libraryDependencies += "org.scala-native" %%% "junit-runtime" % nativeVersion,
126
Test / fork := false // Scala Native cannot run forked tests
127
)
0 commit comments