We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0e26b2 commit d0c2a79Copy full SHA for d0c2a79
build-conventions/src/main/kotlin/convention.publishing.gradle.kts
@@ -1,4 +1,5 @@
1
import util.Git
2
+
3
plugins {
4
id("convention.common")
5
id("convention.dokka")
@@ -37,6 +38,17 @@ tasks {
37
38
}
39
40
41
+publishing {
42
+ publications {
43
+ create<MavenPublication>("js") {
44
+ groupId = "${project.group}"
45
+ artifactId = project.name
46
+ version = "${project.version}"
47
+ from(components["kotlin"])
48
+ }
49
50
+}
51
52
signing {
53
val signingKey: String? by project
54
val signingPassword: String? by project
0 commit comments