From f3770314c544f0233aed77ddb065c806dc101358 Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Tue, 5 Nov 2019 18:22:01 +0900 Subject: [PATCH] Pill: Fix reflect dependency in compiler/fir.resolve module --- compiler/fir/resolve/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/fir/resolve/build.gradle.kts b/compiler/fir/resolve/build.gradle.kts index a30aec068ba..89f80be7794 100644 --- a/compiler/fir/resolve/build.gradle.kts +++ b/compiler/fir/resolve/build.gradle.kts @@ -10,6 +10,7 @@ dependencies { compile(project(":compiler:fir:cones")) compile(project(":compiler:fir:tree")) + compileOnly(project(":kotlin-reflect-api")) compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) } testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "idea_rt", "util", "asm-all", "extensions", rootProject = rootProject) } @@ -25,7 +26,6 @@ dependencies { testCompileOnly(project(":kotlin-reflect-api")) testRuntime(project(":kotlin-reflect")) - implementation(kotlin("reflect")) } sourceSets {