From e096691bd87a3a2c75b8aa8914f1b32c06c2f201 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Thu, 24 Oct 2019 19:31:43 +0300 Subject: [PATCH] Build: Add dependency on gradle plugin to idea-android module --- idea/idea-android/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/idea/idea-android/build.gradle.kts b/idea/idea-android/build.gradle.kts index e19f1ac300f..56fdfb8a7de 100644 --- a/idea/idea-android/build.gradle.kts +++ b/idea/idea-android/build.gradle.kts @@ -22,6 +22,7 @@ dependencies { compileOnly(project(":kotlin-android-extensions-runtime")) compileOnly(intellijDep()) compileOnly(intellijPluginDep("android")) + compileOnly(intellijPluginDep("gradle")) testCompile(project(":kotlin-test:kotlin-test-jvm")) testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }