This commit is contained in:
friendseeker 2024-10-24 22:25:44 -07:00
parent 5e7fe0b158
commit 824395f6be
No known key found for this signature in database
GPG Key ID: 7DD5039728A27160
2 changed files with 3 additions and 2 deletions

View File

@ -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"),
),
)

View File

@ -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}")
},
)