File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments