We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c08b246 commit c039527Copy full SHA for c039527
build.gradle.kts
@@ -12,7 +12,7 @@ plugins {
12
}
13
14
group = "org.jetbrains.kotlinx"
15
-version = "0.8.1-SNAPSHOT"
+version = "0.9.0"
16
17
buildscript {
18
dependencies {
@@ -75,13 +75,19 @@ repositories {
75
mavenCentral()
76
77
78
-
+val emptyJar = tasks.register<org.gradle.jvm.tasks.Jar>("emptyJar") {
79
+ archiveAppendix.set("empty")
80
+}
81
82
kotlin {
83
jvm {
84
mavenPublication {
85
groupId = group as String
86
pom { name by "${project.name}-jvm" }
87
+
88
+ artifact(emptyJar) {
89
+ classifier = "javadoc"
90
+ }
91
92
93
js(IR) {
0 commit comments