Exclude ReversedMissingMethodProblem sbt.internal.librarymanagement.formats.*

This commit is contained in:
Eugene Yokota 2017-07-28 02:00:17 -04:00
parent d6e2720201
commit 208b8e4279
1 changed files with 2 additions and 0 deletions

View File

@ -104,6 +104,8 @@ lazy val lmCore = (project in file("core"))
ProblemFilters.exclude[DirectMissingMethodProblem]("sbt.librarymanagement.Http.open"),
// New methods added to LM API
ProblemFilters.exclude[ReversedMissingMethodProblem]("sbt.librarymanagement.ModuleDescriptor.*"),
// New formats for Logger and GlockLock
ProblemFilters.exclude[ReversedMissingMethodProblem]("sbt.internal.librarymanagement.formats.*"),
)
)
.configure(addSbtIO, addSbtUtilLogging, addSbtUtilPosition, addSbtUtilCache)