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 e3df7ef commit 5b427b8Copy full SHA for 5b427b8
build.sbt
@@ -63,8 +63,14 @@ lazy val chronoscala = (project in file("."))
63
}
64
65
},
66
- mimaBinaryIssueFilters +=
67
- ProblemFilters.exclude[DirectMissingMethodProblem]("jp.ne.opt.chronoscala.Interval.apply"),
+ //the exclusion filter is necessary for Scala compiler bug
+ mimaBackwardIssueFilters := Map(
68
+ "0.3.0" -> (
69
+ if (scalaBinaryVersion.value == "2.12")
70
+ Seq(ProblemFilters.exclude[DirectMissingMethodProblem]("jp.ne.opt.chronoscala.Interval.apply"))
71
+ else
72
+ Nil)
73
+ ),
74
test in Test := {
75
mimaReportBinaryIssues.value
76
(test in Test).value
0 commit comments