Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
e5l committed Jun 22, 2023
1 parent c08b246 commit c039527
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build.gradle.kts
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "org.jetbrains.kotlinx"
version = "0.8.1-SNAPSHOT"
version = "0.9.0"

buildscript {
dependencies {
Expand Down Expand Up @@ -75,13 +75,19 @@ repositories {
mavenCentral()
}


val emptyJar = tasks.register<org.gradle.jvm.tasks.Jar>("emptyJar") {
archiveAppendix.set("empty")
}

kotlin {
jvm {
mavenPublication {
groupId = group as String
pom { name by "${project.name}-jvm" }

artifact(emptyJar) {
classifier = "javadoc"
}
}
}
js(IR) {
Expand Down

0 comments on commit c039527

Please sign in to comment.