From df11ccf755c3986ab22c5e8b7c4913625323bc5e Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Wed, 2 Jun 2021 12:58:51 +0300 Subject: [PATCH] [FIR] Fix dependency on jvm descriptors for running fir2ir tests with JPS --- compiler/fir/fir2ir/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/fir/fir2ir/build.gradle.kts b/compiler/fir/fir2ir/build.gradle.kts index c31fd2a76b0..889cebc50ab 100644 --- a/compiler/fir/fir2ir/build.gradle.kts +++ b/compiler/fir/fir2ir/build.gradle.kts @@ -30,7 +30,9 @@ dependencies { testCompileOnly(project(":kotlin-reflect-api")) testRuntimeOnly(project(":kotlin-reflect")) + testRuntimeOnly(project(":core:deserialization")) testRuntimeOnly(project(":core:descriptors.runtime")) + testRuntimeOnly(project(":core:descriptors.jvm")) testRuntimeOnly(project(":compiler:fir:fir2ir:jvm-backend")) testRuntimeOnly(project(":generators"))