Skip to content

Commit

Permalink
Work around mima bug
Browse files Browse the repository at this point in the history
  • Loading branch information
smarter committed Aug 24, 2019
1 parent 683bf15 commit 7bb0613
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion project/MimaSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ object MimaSettings {

private def otherProblems = Seq(
// New issue added in MiMa 0.4.0
exclude[IncompatibleSignatureProblem]("org.scalacheck.*")
exclude[IncompatibleSignatureProblem]("org.scalacheck.*"),
// Work around weird mima error after cmdLineParser was turned from a lazy
// val into an object.
exclude[InaccessibleMethodProblem]("java.lang.Object.<clinit>"),
)

}

0 comments on commit 7bb0613

Please sign in to comment.