Include artifact name in Sona deployment

This commit is contained in:
JeanMarc van Leerdam 2025-08-20 08:41:06 +02:00
parent 424d0eb50d
commit da9dc644ee
1 changed files with 2 additions and 1 deletions

View File

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