From d6028877e1ce6dae9ff14f6bb8ece92486019582 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Fri, 22 Sep 2017 18:00:45 +0300 Subject: [PATCH] Add kapt3-idea dependency to gradle script --- idea/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index fbe7bc55fa4..e3de3a7c424 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -65,6 +65,8 @@ dependencies { testRuntime(ideaPluginDeps("*.jar", plugin = "android")) testRuntime(ideaPluginDeps("*.jar", plugin = "testng")) + testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } + // deps below are test runtime deps, but made test compile to split compilation and running to reduce mem req testCompile(project(":plugins:android-extensions-compiler")) testCompile(project(":plugins:android-extensions-ide")) { isTransitive = false }