Merge pull request #8219 from jeanmarc/1.11.x

[1.x] Include artifact name in Sona deployment
This commit is contained in:
eugene yokota 2025-08-23 16:48:42 -04:00 committed by GitHub
commit 0e4dcebe5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -3103,9 +3103,10 @@ object Classpaths {
},
sonaDeploymentName := {
val o = organization.value
val n = name.value
val v = version.value
val uuid = UUID.randomUUID().toString().take(8)
s"$o:$v:$uuid"
s"$o:$n:$v:$uuid"
},
)