From 559561ca6bd9cbf27e1aabc03a67167f8303df53 Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Thu, 18 Jun 2020 18:05:55 +0900 Subject: [PATCH] Add missing intellij-core dependency for sam-with-receiver tests --- plugins/sam-with-receiver/sam-with-receiver-cli/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/sam-with-receiver/sam-with-receiver-cli/build.gradle.kts b/plugins/sam-with-receiver/sam-with-receiver-cli/build.gradle.kts index 28b42b5b0bc..4c319582997 100644 --- a/plugins/sam-with-receiver/sam-with-receiver-cli/build.gradle.kts +++ b/plugins/sam-with-receiver/sam-with-receiver-cli/build.gradle.kts @@ -18,6 +18,7 @@ dependencies { testCompile(projectTests(":compiler:tests-common")) testCompile(commonDep("junit:junit")) testCompileOnly(project(":kotlin-compiler")) + testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") } testCompile(project(":kotlin-scripting-jvm-host-unshaded")) testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }