Setup publications with MPP Gradle metadata for kotlin-test library

Move publication configuration from individual platform specific
kotlin-test- modules to the root module.

KT-40225
This commit is contained in:
Ilya Gorbunov
2021-01-25 18:40:16 +03:00
parent 913c298be8
commit a16aaa3824
10 changed files with 297 additions and 32 deletions
-3
View File
@@ -2,8 +2,6 @@ description = 'Kotlin Test for JS'
apply plugin: 'kotlin-platform-js'
configurePublishing(project)
configurations {
distJs
distLibrary
@@ -76,7 +74,6 @@ task sourcesJar(type: Jar, dependsOn: classes) {
artifacts {
runtime libraryJarWithIr
archives libraryJarWithIr
publishedRuntime libraryJarWithIr
distLibrary libraryJarWithIr
archives sourcesJar
distJs(file(compileKotlin2Js.kotlinOptions.outputFile)) {