From 98e8e738104b9e244fcbb0d9198d35f1833d3e78 Mon Sep 17 00:00:00 2001 From: Sergey Igushkin Date: Wed, 29 Nov 2017 18:30:47 +0300 Subject: [PATCH] Fix kotlin-reflect dependency IDE import after API separation. (cherry picked from commit 19967a2) --- libraries/tools/kotlin-gradle-plugin/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/tools/kotlin-gradle-plugin/build.gradle b/libraries/tools/kotlin-gradle-plugin/build.gradle index 2cafd06e688..c032278b720 100644 --- a/libraries/tools/kotlin-gradle-plugin/build.gradle +++ b/libraries/tools/kotlin-gradle-plugin/build.gradle @@ -32,6 +32,7 @@ dependencies { compileOnly project(':compiler:incremental-compilation-impl') compile project(':kotlin-stdlib') + compileOnly project(':kotlin-reflect-api') compileOnly project(':kotlin-android-extensions') compileOnly project(':kotlin-build-common') compileOnly project(':kotlin-compiler-runner') @@ -59,6 +60,7 @@ dependencies { testCompile project(':kotlin-compiler-runner') testCompile project(':kotlin-test::kotlin-test-junit') testCompile "junit:junit:4.12" + testCompileOnly project(':kotlin-reflect-api') testCompileOnly project(':kotlin-annotation-processing') testCompileOnly project(':kotlin-annotation-processing-gradle') }