From 52055ecc94749bb0c09c4adf64cba8dbb41fe2cc Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Mon, 11 Feb 2019 14:46:27 +0300 Subject: [PATCH] Add classifier for the artifact to be resolved correctly --- include/kotlin-stdlib-common-sources/build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/kotlin-stdlib-common-sources/build.gradle.kts b/include/kotlin-stdlib-common-sources/build.gradle.kts index cc00239117f..6784969a181 100644 --- a/include/kotlin-stdlib-common-sources/build.gradle.kts +++ b/include/kotlin-stdlib-common-sources/build.gradle.kts @@ -9,5 +9,7 @@ dependencies { } artifacts { - add("runtime", provider { sources.singleFile }) + add("runtime", provider { sources.singleFile }) { + classifier = "sources" + } } \ No newline at end of file