mirror of https://github.com/sbt/sbt.git
evict some mima errors in sbt.internal
This commit is contained in:
parent
8df754eeb1
commit
42e4c5a7c0
|
|
@ -8,3 +8,6 @@ npm-debug.log
|
|||
!sbt/src/server-test/completions/target
|
||||
.big
|
||||
.idea
|
||||
.bloop
|
||||
.metals
|
||||
metals.sbt
|
||||
|
|
|
|||
|
|
@ -677,7 +677,8 @@ lazy val protocolProj = (project in file("protocol"))
|
|||
exclude[DirectMissingMethodProblem]("sbt.protocol.SettingQueryFailure.copy$default$*"),
|
||||
exclude[DirectMissingMethodProblem]("sbt.protocol.SettingQuerySuccess.copy"),
|
||||
exclude[DirectMissingMethodProblem]("sbt.protocol.SettingQuerySuccess.copy$default$*"),
|
||||
// ignore missing methods in sbt.internal
|
||||
// ignore missing or incompatible methods in sbt.internal
|
||||
exclude[IncompatibleMethTypeProblem]("sbt.internal.*"),
|
||||
exclude[DirectMissingMethodProblem]("sbt.internal.*"),
|
||||
exclude[MissingTypesProblem]("sbt.internal.protocol.JsonRpcResponseError"),
|
||||
)
|
||||
|
|
@ -876,7 +877,7 @@ lazy val mainProj = (project in file("main"))
|
|||
// New and changed methods on KeyIndex. internal.
|
||||
exclude[ReversedMissingMethodProblem]("sbt.internal.KeyIndex.*"),
|
||||
// internal
|
||||
exclude[IncompatibleMethTypeProblem]("sbt.internal.server.LanguageServerReporter.*"),
|
||||
exclude[IncompatibleMethTypeProblem]("sbt.internal.*"),
|
||||
// Changed signature or removed private[sbt] methods
|
||||
exclude[DirectMissingMethodProblem]("sbt.Classpaths.unmanagedLibs0"),
|
||||
exclude[DirectMissingMethodProblem]("sbt.Defaults.allTestGroupsTask"),
|
||||
|
|
|
|||
Loading…
Reference in New Issue