From 167a4c6b975b393cf384030c9369b529de0e22ac Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Thu, 11 Nov 2021 14:32:09 +0300 Subject: [PATCH] [Build] Add dependency on :core:descriptors.runtime to spec tests This is needed to run those tests via JPS --- 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 ba951048a66..c0010ae1b3e 100644 --- a/compiler/tests-spec/build.gradle.kts +++ b/compiler/tests-spec/build.gradle.kts @@ -20,6 +20,7 @@ dependencies { api("org.jsoup:jsoup:1.14.2") if (isIdeaActive) testRuntimeOnly(files("${rootProject.projectDir}/dist/kotlinc/lib/kotlin-reflect.jar")) testRuntimeOnly(project(":kotlin-reflect")) + testRuntimeOnly(project(":core:descriptors.runtime")) testApiJUnit5(vintageEngine = true) }