mirror of https://github.com/sbt/sbt.git
Fix CI
This commit is contained in:
parent
5e7fe0b158
commit
824395f6be
|
|
@ -178,7 +178,8 @@ def mimaSettingsSince(versions: Seq[String]): Seq[Def.Setting[_]] = Def settings
|
|||
exclude[DirectMissingMethodProblem]("sbt.PluginData.this"),
|
||||
exclude[IncompatibleResultTypeProblem]("sbt.EvaluateTask.executeProgress"),
|
||||
exclude[DirectMissingMethodProblem]("sbt.Keys.currentTaskProgress"),
|
||||
exclude[IncompatibleResultTypeProblem]("sbt.PluginData.copy$default$10")
|
||||
exclude[IncompatibleResultTypeProblem]("sbt.PluginData.copy$default$10"),
|
||||
exclude[DirectMissingMethodProblem]("sbt.Defaults.configArtifactPathSetting"),
|
||||
),
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,6 @@ lazy val use = project
|
|||
val x = (dep / Compile / compile).value
|
||||
val picklePath = (Compile / internalDependencyPicklePath).value
|
||||
assert(picklePath.size == 1 &&
|
||||
picklePath.head.data.name == "dep_2.13-0.1.0-SNAPSHOT.jar", s"picklePath = ${picklePath}")
|
||||
picklePath.head.data.name == "early.jar", s"picklePath = ${picklePath}")
|
||||
},
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue