From f00170eb31a5381c0f5c6e3e1e153721f92d493f Mon Sep 17 00:00:00 2001 From: Ilya Kirillov Date: Mon, 21 Jun 2021 02:50:11 +0200 Subject: [PATCH] FIR IDE: add missing runtime dependencies for tests --- idea/idea-fir-fe10-binding/build.gradle.kts | 1 + plugins/uast-kotlin-fir/build.gradle.kts | 1 + 2 files changed, 2 insertions(+) diff --git a/idea/idea-fir-fe10-binding/build.gradle.kts b/idea/idea-fir-fe10-binding/build.gradle.kts index f4ae0846fcd..268738becbc 100644 --- a/idea/idea-fir-fe10-binding/build.gradle.kts +++ b/idea/idea-fir-fe10-binding/build.gradle.kts @@ -7,6 +7,7 @@ dependencies { implementation(project(":idea:idea-frontend-fir")) implementation(project(":idea")) + testRuntime(project(":idea:idea-fir")) testImplementation(projectTests(":idea:idea-fir")) testImplementation(projectTests(":idea:idea-frontend-independent")) diff --git a/plugins/uast-kotlin-fir/build.gradle.kts b/plugins/uast-kotlin-fir/build.gradle.kts index 084f380ec33..5f5275b892c 100644 --- a/plugins/uast-kotlin-fir/build.gradle.kts +++ b/plugins/uast-kotlin-fir/build.gradle.kts @@ -25,6 +25,7 @@ dependencies { implementation(project(":idea:idea-frontend-api")) implementation(project(":idea:idea-frontend-fir")) + testRuntime(project(":idea:idea-fir")) testImplementation(commonDep("junit:junit")) testCompileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") } testImplementation(projectTests(":compiler:tests-common"))