Merge pull request #7213 from adpi2/fix-7210

[1.9.x] Fix cross-publish sbt plugin to Maven
This commit is contained in:
eugene yokota 2023-04-11 14:19:01 -04:00 committed by GitHub
commit 0078228039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2853,7 +2853,7 @@ object Classpaths {
})(Def.task(Map.empty))
private def sbtCrossVersion: Def.Initialize[String => String] = Def.setting {
val sbtV = sbtBinaryVersion.value
val sbtV = (pluginCrossBuild / sbtBinaryVersion).value
val scalaV = scalaBinaryVersion.value
name => name + s"_${scalaV}_$sbtV"
}