File tree 1 file changed +13
-0
lines changed
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("."))
78
78
// think about going 1.0, it's been a while
79
79
scalaModuleMimaPreviousVersion := Some (" 0.9.1" ),
80
80
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
+
81
94
testOptions += Tests .Argument (TestFrameworks .JUnit , " -v" , " -a" ),
82
95
83
96
(sourceGenerators in Compile ) += Def .task {
You can’t perform that action at this time.
0 commit comments