From a10a261894706566e1f23c00937d4ccdfe9e604d Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Mon, 17 Jun 2019 01:24:39 +0300 Subject: [PATCH] Build: Workaround wrong import of transitive libraries in Idea --- prepare/compiler/build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/prepare/compiler/build.gradle.kts b/prepare/compiler/build.gradle.kts index 68cfd1de362..8e410486092 100644 --- a/prepare/compiler/build.gradle.kts +++ b/prepare/compiler/build.gradle.kts @@ -94,11 +94,13 @@ publish() noDefaultJar() val packCompiler by task { - configurations = listOf(fatJarContents) + configurations = emptyList() duplicatesStrategy = DuplicatesStrategy.EXCLUDE destinationDir = File(buildDir, "libs") setupPublicJar(compilerBaseName, "before-proguard") + + from(fatJarContents) dependsOn(fatJarContentsStripServices) from {