From e7ba9e5e4ec882e20b918a9c5a6cd39eb8c01825 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Thu, 20 Jun 2019 13:25:32 +0300 Subject: [PATCH] Build: Fix kotlin-daemon-client-new compile classpath for jps build --- compiler/daemon/daemon-client-new/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/daemon/daemon-client-new/build.gradle.kts b/compiler/daemon/daemon-client-new/build.gradle.kts index de5c62ec4c5..e140f905513 100644 --- a/compiler/daemon/daemon-client-new/build.gradle.kts +++ b/compiler/daemon/daemon-client-new/build.gradle.kts @@ -35,11 +35,12 @@ dependencies { compileOnly(project(":daemon-common-new")) compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-daemon-client")) - embedded(project(":kotlin-daemon-client")) { isTransitive = false } compileOnly(project(":js:js.frontend")) + compileOnly(project(":daemon-common")) { isTransitive = false } compileOnly(commonDep("net.rubygrapefruit", "native-platform")) compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) } + embedded(project(":kotlin-daemon-client")) { isTransitive = false } embedded(project(":daemon-common")) { isTransitive = false } embedded(commonDep("net.rubygrapefruit", "native-platform")) nativePlatformVariants.forEach {