Skip to content

Commit 15b3597

Browse files
committed
forcibly make MiMa green
1 parent f3d7e70 commit 15b3597

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build.sbt

+11
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,17 @@ 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+
// mysterious -- see scala/scala-java8-compat#211
85+
exclude[DirectMissingMethodProblem ]("scala.compat.java8.Priority1FunctionConverters.enrichAsJavaIntFunction"),
86+
exclude[ReversedMissingMethodProblem]("scala.compat.java8.Priority1FunctionConverters.enrichAsJavaIntFunction"),
87+
exclude[DirectMissingMethodProblem ]("scala.compat.java8.FunctionConverters.package.enrichAsJavaIntFunction" ),
88+
exclude[ReversedMissingMethodProblem]("scala.compat.java8.FunctionConverters.package.enrichAsJavaIntFunction" ),
89+
)
90+
},
91+
8192
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
8293

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

0 commit comments

Comments
 (0)