From fb8bba4dfb7e2c96b7ac7b14a5fc5bf3da644a5f Mon Sep 17 00:00:00 2001 From: Victor Petukhov Date: Fri, 9 Oct 2020 14:47:04 +0300 Subject: [PATCH] Include kotlin reflect test runtime dependency for `tests-java8` module to make jps tests running work --- compiler/tests-java8/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/tests-java8/build.gradle.kts b/compiler/tests-java8/build.gradle.kts index 9af9d409746..49e5fd3f2ae 100644 --- a/compiler/tests-java8/build.gradle.kts +++ b/compiler/tests-java8/build.gradle.kts @@ -16,6 +16,7 @@ dependencies { Platform[192].orHigher { testRuntimeOnly(intellijPluginDep("java")) } + if (System.getProperty("idea.active") != null) testRuntimeOnly(files("${rootProject.projectDir}/dist/kotlinc/lib/kotlin-reflect.jar")) } sourceSets {