From 588236391e106ff09d0359c0a1dff28fcb979c3d Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Tue, 19 Feb 2019 22:18:51 +0300 Subject: [PATCH] Build: Fix Kotlin/Native composite build --- include/kotlin-stdlib-common-sources/build.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/kotlin-stdlib-common-sources/build.gradle.kts b/include/kotlin-stdlib-common-sources/build.gradle.kts index 28593c57a7e..2ff36eebd9f 100644 --- a/include/kotlin-stdlib-common-sources/build.gradle.kts +++ b/include/kotlin-stdlib-common-sources/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - kotlin("jvm") + base } val sources by configurations.creating @@ -13,6 +13,7 @@ val buildSources by tasks.creating(Jar::class.java) { from(provider { zipTree(sources.singleFile) }) } -artifacts.add("runtime", buildSources) { +artifacts.add("default", buildSources) { + name = "kotlin-stdlib-common" classifier = "sources" } \ No newline at end of file