From d612c130e8e8394012a0a35e853d5ef54cd0d0a9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Fri, 29 May 2020 17:17:09 +0300 Subject: [PATCH] Build: Fix jpsStandalone dependency in core.descriptors.runtime --- core/descriptors.runtime/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/descriptors.runtime/build.gradle.kts b/core/descriptors.runtime/build.gradle.kts index 819b54afd64..a9ca8f234ce 100644 --- a/core/descriptors.runtime/build.gradle.kts +++ b/core/descriptors.runtime/build.gradle.kts @@ -16,7 +16,7 @@ dependencies { testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") } Platform[192].orHigher { testRuntimeOnly(intellijDep()) { includeJars("platform-concurrency") } - testRuntimeOnly(intellijPluginDep("jps-standalone")) { includeJars("jps-model") } + testRuntimeOnly(jpsStandalone()) { includeJars("jps-model") } } }