mirror of https://github.com/sbt/sbt.git
Update mima
This commit is contained in:
parent
645908f597
commit
27e6342bea
|
|
@ -117,7 +117,7 @@ def testedBaseSettings: Seq[Setting[?]] =
|
|||
|
||||
val sbt20Plus =
|
||||
Seq(
|
||||
"2.0.0-RC5",
|
||||
"2.0.0-RC4",
|
||||
)
|
||||
val mimaSettings = mimaSettingsSince(sbt20Plus)
|
||||
def mimaSettingsSince(versions: Seq[String]): Seq[Def.Setting[?]] = Def settings (
|
||||
|
|
@ -366,6 +366,7 @@ lazy val utilCache = project
|
|||
contrabandSettings,
|
||||
mimaSettings,
|
||||
mimaBinaryIssueFilters ++= Seq(
|
||||
exclude[MissingClassProblem]("sbt.internal.util.ActionCacheError*"),
|
||||
),
|
||||
Test / fork := true,
|
||||
)
|
||||
|
|
@ -709,6 +710,8 @@ lazy val mainProj = (project in file("main"))
|
|||
Compile / doc / sources := Nil,
|
||||
mimaSettings,
|
||||
mimaBinaryIssueFilters ++= Vector(
|
||||
exclude[MissingClassProblem]("sbt.internal.*"),
|
||||
exclude[MissingFieldProblem]("sbt.internal.server.NetworkChannel.*"),
|
||||
),
|
||||
)
|
||||
.dependsOn(lmCore, lmIvy, lmCoursierShadedPublishing)
|
||||
|
|
|
|||
Loading…
Reference in New Issue