mirror of https://github.com/sbt/sbt.git
Add FromCoursier to mima exclusions (#210)
Maybe that object should be moved to lmcoursier.internal…
This commit is contained in:
parent
29208b66b9
commit
c7975b9f1a
|
|
@ -60,7 +60,8 @@ object Mima {
|
|||
// spurious errors on CI
|
||||
ProblemFilters.exclude[IncompatibleSignatureProblem]("*"),
|
||||
// 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.")),
|
||||
(pb: Problem) => pb.matchName.forall(!_.startsWith("lmcoursier.definitions.FromCoursier."))
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue