mirror of https://github.com/sbt/sbt.git
Ignore incompatible signature problems
Seems these are spurious (only getting them on CI)
This commit is contained in:
parent
cf7498d256
commit
caf77f06c3
|
|
@ -36,6 +36,8 @@ object Mima {
|
||||||
import com.typesafe.tools.mima.core._
|
import com.typesafe.tools.mima.core._
|
||||||
|
|
||||||
Seq(
|
Seq(
|
||||||
|
// spurious errors on CI
|
||||||
|
ProblemFilters.exclude[IncompatibleSignatureProblem]("*"),
|
||||||
// Methods that shouldn't have been there
|
// Methods that shouldn't have been there
|
||||||
ProblemFilters.exclude[DirectMissingMethodProblem]("lmcoursier.credentials.FileCredentials.get"),
|
ProblemFilters.exclude[DirectMissingMethodProblem]("lmcoursier.credentials.FileCredentials.get"),
|
||||||
ProblemFilters.exclude[DirectMissingMethodProblem]("lmcoursier.credentials.DirectCredentials.matches"),
|
ProblemFilters.exclude[DirectMissingMethodProblem]("lmcoursier.credentials.DirectCredentials.matches"),
|
||||||
|
|
@ -55,6 +57,8 @@ object Mima {
|
||||||
import com.typesafe.tools.mima.core._
|
import com.typesafe.tools.mima.core._
|
||||||
|
|
||||||
Seq(
|
Seq(
|
||||||
|
// spurious errors on CI
|
||||||
|
ProblemFilters.exclude[IncompatibleSignatureProblem]("*"),
|
||||||
// Should have been put under lmcoursier.internal?
|
// Should have been put under lmcoursier.internal?
|
||||||
(pb: Problem) => pb.matchName.forall(!_.startsWith("lmcoursier.definitions.ToCoursier."))
|
(pb: Problem) => pb.matchName.forall(!_.startsWith("lmcoursier.definitions.ToCoursier."))
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue