Skip to content

Commit 0d1ca5e

Browse files
committed
MiMa: filter out false positive
1 parent 00f4131 commit 0d1ca5e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

build.sbt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ lazy val commonSettings = Seq(
1414
|See the NOTICE file distributed with this work for
1515
|additional information regarding copyright ownership.
1616
|""".stripMargin)),
17-
scalaModuleMimaPreviousVersion := Some("2.1.6")
17+
scalaModuleMimaPreviousVersion := Some("2.1.6"),
18+
mimaBinaryIssueFilters ++= {
19+
import com.typesafe.tools.mima.core._
20+
import com.typesafe.tools.mima.core.ProblemFilters._
21+
Seq(
22+
exclude[ReversedMissingMethodProblem]("scala.collection.compat.PackageShared.*"), // it's package-private
23+
)
24+
}
1825
)
1926

2027
lazy val root = project

0 commit comments

Comments
 (0)