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 00f4131 commit 0d1ca5eCopy full SHA for 0d1ca5e
build.sbt
@@ -14,7 +14,14 @@ lazy val commonSettings = Seq(
14
|See the NOTICE file distributed with this work for
15
|additional information regarding copyright ownership.
16
|""".stripMargin)),
17
- scalaModuleMimaPreviousVersion := Some("2.1.6")
+ 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
+ }
25
)
26
27
lazy val root = project
0 commit comments