Add MiMa exclusion

Changing the return type of is fine because this symbol is private and
internal to sbt.
This commit is contained in:
Martin Duhem 2023-10-11 20:59:19 +02:00
parent f03320047e
commit d27a1a4ebb
1 changed files with 1 additions and 0 deletions

View File

@ -428,6 +428,7 @@ lazy val utilLogging = (project in file("internal") / "util-logging")
exclude[MissingTypesProblem]("sbt.internal.util.ConsoleAppender"),
exclude[MissingTypesProblem]("sbt.internal.util.BufferedAppender"),
exclude[MissingClassProblem]("sbt.internal.util.Terminal$BlockingInputStream$"),
exclude[IncompatibleResultTypeProblem]("sbt.util.LoggerContext#Log4JLoggerContext.loggers"),
),
)
.configure(addSbtIO)