Skip to content

Commit 849ccdc

Browse files
Fix POM Name
POM generated did not have POM_NAME referenced after the migration, adding it back.
1 parent e3d2096 commit 849ccdc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Branch-SDK/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ publishing {
120120
val GROUP: String by project
121121
val VERSION_NAME: String by project
122122
val POM_ARTIFACT_ID: String by project
123+
val POM_NAME: String by project
123124
val POM_DESCRIPTION: String by project
124125
val POM_URL: String by project
125126
val POM_SCM_URL: String by project
@@ -137,6 +138,7 @@ publishing {
137138
artifactId = POM_ARTIFACT_ID
138139
version = VERSION_NAME
139140
pom {
141+
name.set(POM_NAME)
140142
url.set(POM_URL)
141143
description.set(POM_DESCRIPTION)
142144
developers {

0 commit comments

Comments
 (0)