From d3f63166f3ce20e4b69a650e51a9552e1ca8971d Mon Sep 17 00:00:00 2001 From: Victor Petukhov Date: Thu, 26 Dec 2019 14:27:44 +0300 Subject: [PATCH] [JPS] Include Kotlin reflection for `tests-spec` though explicit specifying in gradle dependencies --- compiler/tests-spec/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/tests-spec/build.gradle.kts b/compiler/tests-spec/build.gradle.kts index 5de9a3edebd..bcf7e2962ed 100644 --- a/compiler/tests-spec/build.gradle.kts +++ b/compiler/tests-spec/build.gradle.kts @@ -10,6 +10,7 @@ dependencies { testRuntimeOnly(intellijPluginDep("java")) } compile("org.jsoup:jsoup:1.10.3") + if (System.getProperty("idea.active") != null) testRuntimeOnly(files("${rootProject.projectDir}/dist/kotlinc/lib/kotlin-reflect.jar")) } sourceSets {