From 68d0da379e87a105ebd2d8a17ea461a14d0bc67c Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Fri, 4 Jan 2019 09:55:28 -0500 Subject: [PATCH] add Mima exclusion --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index 27398ecca..b8b9894ed 100644 --- a/build.sbt +++ b/build.sbt @@ -582,6 +582,8 @@ lazy val mainProj = (project in file("main")) mimaBinaryIssueFilters ++= Vector( // New and changed methods on KeyIndex. internal. exclude[ReversedMissingMethodProblem]("sbt.internal.KeyIndex.*"), + // internal + exclude[IncompatibleMethTypeProblem]("sbt.internal.server.LanguageServerReporter.*"), // Changed signature or removed private[sbt] methods exclude[DirectMissingMethodProblem]("sbt.Classpaths.unmanagedLibs0"),