diff --git a/jps/jps-plugin/build.gradle.kts b/jps/jps-plugin/build.gradle.kts index 0d818f1d28d..2ffe1efb648 100644 --- a/jps/jps-plugin/build.gradle.kts +++ b/jps/jps-plugin/build.gradle.kts @@ -37,16 +37,14 @@ dependencies { Ide.IJ { testCompile(intellijDep("devkit")) } - if (Platform[181].orHigher()) { - testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "platform-api", "log4j") } - } else { - testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "log4j") } - } + + testCompile(intellijDep()) + testCompile(jpsBuildTest()) compilerModules.forEach { testRuntime(project(it)) } - testRuntime(intellijDep()) + testRuntime(project(":kotlin-reflect")) testRuntime(project(":kotlin-script-runtime")) }