From 0347a737f6584a71405c7e21f3bf983dcec67b0e Mon Sep 17 00:00:00 2001 From: Stanislav Erokhin Date: Fri, 21 Jan 2022 13:17:24 +0100 Subject: [PATCH] Exclude the :compiler:cli-js from the kotlin-compiler-fe10-for-ide.jar :compiler:cli already excluded and :compiler:cli-js have references to the classes from :cli. P.s. the excluded list for kotlin-compiler-for-ide artifact is way more we need to review that and refactor --- .../kotlin-compiler-fe10-for-ide/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/prepare/ide-plugin-dependencies/kotlin-compiler-fe10-for-ide/build.gradle.kts b/prepare/ide-plugin-dependencies/kotlin-compiler-fe10-for-ide/build.gradle.kts index 9dd6a235080..249230b6874 100644 --- a/prepare/ide-plugin-dependencies/kotlin-compiler-fe10-for-ide/build.gradle.kts +++ b/prepare/ide-plugin-dependencies/kotlin-compiler-fe10-for-ide/build.gradle.kts @@ -6,6 +6,7 @@ val fe10CompilerModules: Array by rootProject.extra val excludedCompilerModules = listOf( ":compiler:cli", + ":compiler:cli-js", ":compiler:javac-wrapper", ":compiler:incremental-compilation-impl" )