Skip to content

Commit 8e2b88e

Browse files
committed
forcibly make MiMa green
1 parent f3d7e70 commit 8e2b88e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: build.sbt

+13
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,19 @@ lazy val scalaJava8Compat = (project in file("."))
7878
// think about going 1.0, it's been a while
7979
scalaModuleMimaPreviousVersion := Some("0.9.1"),
8080

81+
mimaBinaryIssueFilters ++= {
82+
import com.typesafe.tools.mima.core._, ProblemFilters._
83+
Seq(
84+
// bah
85+
exclude[IncompatibleSignatureProblem]("*"),
86+
// mysterious -- see scala/scala-java8-compat#211
87+
exclude[DirectMissingMethodProblem ]("scala.compat.java8.Priority1FunctionConverters.enrichAsJavaIntFunction"),
88+
exclude[ReversedMissingMethodProblem]("scala.compat.java8.Priority1FunctionConverters.enrichAsJavaIntFunction"),
89+
exclude[DirectMissingMethodProblem ]("scala.compat.java8.FunctionConverters.package.enrichAsJavaIntFunction" ),
90+
exclude[ReversedMissingMethodProblem]("scala.compat.java8.FunctionConverters.package.enrichAsJavaIntFunction" ),
91+
)
92+
},
93+
8194
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
8295

8396
(sourceGenerators in Compile) += Def.task {

0 commit comments

Comments
 (0)