Skip to content

Commit 0ad2998

Browse files
committed
Add missing publishing properties
1 parent 227de80 commit 0ad2998

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

buildSrc/src/main/kotlin/kord-publishing.gradle.kts

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,39 @@ mavenPublishing {
6060
plugins.withId("org.jetbrains.kotlin.multiplatform") {
6161
configure(KotlinMultiplatform(JavadocJar.Dokka("dokkaGeneratePublicationHtml")))
6262
}
63+
64+
pom {
65+
name = "codegen.kt"
66+
description = "Utitlities for generating Kotlin code"
67+
url = "https://github.com/kordlib/codegen-kt"
68+
69+
organization {
70+
name = "Kord"
71+
url = "https://github.com/kordlib"
72+
}
73+
74+
developers {
75+
developer {
76+
name = "The Kord Team"
77+
}
78+
}
79+
80+
issueManagement {
81+
system = "GitHub"
82+
url = "https://github.com/kordlib/kord/issues"
83+
}
84+
85+
licenses {
86+
license {
87+
name = "MIT"
88+
url = "https://opensource.org/licenses/MIT"
89+
}
90+
}
91+
92+
scm {
93+
connection = "scm:git:ssh://github.com/kordlib/codegen-kt.git"
94+
developerConnection = "scm:git:ssh://[email protected]:kordlib/codegen-kt.git"
95+
url = "https://github.com/kordlib/codegen-kt.git"
96+
}
97+
}
6398
}

0 commit comments

Comments
 (0)