Add mima exclusion for JsonProtocol.LogOptionFormat

According to Travis CI only Scala 2.11 seems to be affected.
This commit is contained in:
Eugene Yokota 2018-10-02 08:17:08 -04:00
parent 9bb244314d
commit 458675239c
1 changed files with 2 additions and 0 deletions

View File

@ -127,6 +127,8 @@ lazy val utilLogging = (project in internalPath / "util-logging")
exclude[DirectMissingMethodProblem]("sbt.util.InterfaceUtil#ConcretePosition.this"),
exclude[DirectMissingMethodProblem]("sbt.util.InterfaceUtil#ConcreteProblem.this"),
exclude[ReversedMissingMethodProblem]("sbt.internal.util.ConsoleOut.flush"),
// This affects Scala 2.11 only it seems, so it's ok?
exclude[InheritedNewAbstractMethodProblem]("sbt.internal.util.codec.JsonProtocol.LogOptionFormat"),
),
)
.configure(addSbtIO)