From 208b8e427932f41bb17c0a7b6f2767622306ecae Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Fri, 28 Jul 2017 02:00:17 -0400 Subject: [PATCH] Exclude ReversedMissingMethodProblem sbt.internal.librarymanagement.formats.* --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index 3debd56b2..144eb0a9a 100644 --- a/build.sbt +++ b/build.sbt @@ -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)