Publish kotlinx-atomicfu-runtime module

Merge-request: KT-MR-6516
Merged-by: Maria Sokolova <maria.sokolova@jetbrains.com>
This commit is contained in:
mvicsokolova
2022-06-23 14:56:57 +00:00
committed by Space
parent 0e375e4a3f
commit d015b2b899
3 changed files with 16 additions and 3 deletions
@@ -2,6 +2,7 @@ description = "Runtime library for the Atomicfu compiler plugin"
plugins {
kotlin("js")
`maven-publish`
}
group = "org.jetbrains.kotlin"
@@ -23,4 +24,14 @@ kotlin {
}
}
}
}
}
configureCommonPublicationSettingsForGradle()
publishing {
publications {
create<MavenPublication>("maven") {
from(components["kotlin"])
}
}
}