From 6cf5514f6ea9116253a49adcab292580bb7463c3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Thu, 16 May 2019 21:08:30 +0300 Subject: [PATCH] Build: Fix jps import for jvm-abi-gen plugin --- plugins/jvm-abi-gen/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/jvm-abi-gen/build.gradle.kts b/plugins/jvm-abi-gen/build.gradle.kts index 1962817eb6e..2cb39e74ce0 100644 --- a/plugins/jvm-abi-gen/build.gradle.kts +++ b/plugins/jvm-abi-gen/build.gradle.kts @@ -17,7 +17,7 @@ dependencies { compileOnly(intellijCoreDep()) { includeJars("intellij-core", "asm-all", rootProject = rootProject) } - runtimeOnly(project(":kotlin-compiler")) + testRuntimeOnly(project(":kotlin-compiler")) testCompile(commonDep("junit:junit")) testCompile(projectTests(":compiler:tests-common"))