From 260e2d0dc39568a770b6e9fb4b032574ed3b41c3 Mon Sep 17 00:00:00 2001 From: Denis Zharkov Date: Thu, 18 Jun 2020 10:34:57 +0300 Subject: [PATCH] FIR: Add dependency for :core:descriptors.runtime to modularized tests Otherwise NoClassDefFoundError happens on JPS --- compiler/fir/modularized-tests/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/fir/modularized-tests/build.gradle.kts b/compiler/fir/modularized-tests/build.gradle.kts index a64b647eea7..29645e090fa 100644 --- a/compiler/fir/modularized-tests/build.gradle.kts +++ b/compiler/fir/modularized-tests/build.gradle.kts @@ -31,6 +31,7 @@ dependencies { testCompileOnly(project(":kotlin-reflect-api")) testRuntime(project(":kotlin-reflect")) + testRuntime(project(":core:descriptors.runtime")) testCompile(projectTests(":compiler:fir:analysis-tests")) testCompile(project(":compiler:fir:resolve")) testCompile(project(":compiler:fir:dump")) @@ -57,4 +58,4 @@ projectTest { } } -testsJar() \ No newline at end of file +testsJar()