mirror of https://github.com/sbt/sbt.git
Tweak mima config
This commit is contained in:
parent
22981b947c
commit
00b51d53b2
|
|
@ -37,7 +37,9 @@ object Mima {
|
||||||
|
|
||||||
Seq(
|
Seq(
|
||||||
// Removed unused method, shouldn't have been there in the first place
|
// Removed unused method, shouldn't have been there in the first place
|
||||||
ProblemFilters.exclude[DirectMissingMethodProblem]("lmcoursier.credentials.DirectCredentials.authentication")
|
ProblemFilters.exclude[DirectMissingMethodProblem]("lmcoursier.credentials.DirectCredentials.authentication"),
|
||||||
|
// ignore shaded and internal stuff related errors
|
||||||
|
(pb: Problem) => pb.matchName.forall(!_.startsWith("lmcoursier.internal."))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -48,9 +50,7 @@ object Mima {
|
||||||
|
|
||||||
Seq(
|
Seq(
|
||||||
// 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."))
|
||||||
// ignore shaded and internal stuff related errors
|
|
||||||
(pb: Problem) => pb.matchName.forall(!_.startsWith("lmcoursier.internal."))
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue