diff --git a/idea/idea-fir/build.gradle.kts b/idea/idea-fir/build.gradle.kts index dc0bf143edf..0f7fee1b28c 100644 --- a/idea/idea-fir/build.gradle.kts +++ b/idea/idea-fir/build.gradle.kts @@ -6,7 +6,8 @@ plugins { dependencies { testCompileOnly(toolsJar()) testRuntimeOnly(toolsJar()) - + + testRuntimeOnly(intellijPluginDep("gradle")) testCompile(project(":idea")) testCompile(projectTests(":idea")) testCompile(projectTests(":compiler:tests-common")) @@ -17,6 +18,9 @@ dependencies { testCompileOnly(intellijDep()) testRuntime(intellijDep()) + if (Ide.AS35.orLower()) { + testRuntimeOnly(intellijPluginDep("Groovy")) + } Platform[192].orHigher { testCompileOnly(intellijPluginDep("java")) testRuntime(intellijPluginDep("java"))