We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52528a4 commit 81308cdCopy full SHA for 81308cd
1 file changed
kt/build-logic/convention/src/main/kotlin/publish/PublishToMavenCentralPlugin.kt
@@ -72,6 +72,13 @@ class PublishToMavenCentralPlugin : Plugin<Project> {
72
publication.pom { mavenPom ->
73
mavenPom.url.set("https://github.com/utopia-rise/godot-kotlin-jvm.git")
74
75
+ if (mavenPom.name.getOrElse("").isNullOrEmpty()) {
76
+ mavenPom.name.set(project.name)
77
+ }
78
+ if (mavenPom.description.getOrElse("").isNullOrEmpty()) {
79
+ mavenPom.description.set(project.description ?: "Godot kotlin jvm module")
80
81
+
82
mavenPom.scm { mavenPomScm ->
83
mavenPomScm.connection.set("scm:git:https://github.com/utopia-rise/godot-kotlin-jvm")
84
mavenPomScm.developerConnection.set("scm:git:github.com:utopia-rise/godot-kotlin-jvm.git")
0 commit comments