Skip to content

Commit c039527

Browse files
committed
Release 0.9.0
1 parent c08b246 commit c039527

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build.gradle.kts

+8-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group = "org.jetbrains.kotlinx"
15-
version = "0.8.1-SNAPSHOT"
15+
version = "0.9.0"
1616

1717
buildscript {
1818
dependencies {
@@ -75,13 +75,19 @@ repositories {
7575
mavenCentral()
7676
}
7777

78-
78+
val emptyJar = tasks.register<org.gradle.jvm.tasks.Jar>("emptyJar") {
79+
archiveAppendix.set("empty")
80+
}
7981

8082
kotlin {
8183
jvm {
8284
mavenPublication {
8385
groupId = group as String
8486
pom { name by "${project.name}-jvm" }
87+
88+
artifact(emptyJar) {
89+
classifier = "javadoc"
90+
}
8591
}
8692
}
8793
js(IR) {

0 commit comments

Comments
 (0)