fix(datahub-client): adds missing archiveAppendix to artifactid when publishing (#12112)

This commit is contained in:
Sergio Gómez Villamor 2024-12-12 19:11:54 +01:00 committed by GitHub
parent a7e03a3663
commit 613b433d18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -196,7 +196,7 @@ publishing {
pom {
name = 'Datahub Client'
group = 'io.acryl'
artifactId = 'datahub-client'
artifactId = 'datahub-client' + (project.hasProperty('archiveAppendix') ? "-${archiveAppendix}" : '')
description = 'DataHub Java client for metadata integration'
url = 'https://datahubproject.io'
artifacts = [shadowJar, javadocJar, sourcesJar]