From a12ea37ae8eb236723d268a35de9cd8146bcd228 Mon Sep 17 00:00:00 2001 From: Ilya Chernikov Date: Wed, 11 Sep 2019 16:02:15 +0200 Subject: [PATCH] [minor] Fix non-fatal exception during the embeddable test --- libraries/scripting/jvm-host-test/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/scripting/jvm-host-test/build.gradle.kts b/libraries/scripting/jvm-host-test/build.gradle.kts index bb47ac13067..6c2d48581b3 100644 --- a/libraries/scripting/jvm-host-test/build.gradle.kts +++ b/libraries/scripting/jvm-host-test/build.gradle.kts @@ -15,7 +15,7 @@ val embeddableTestRuntime by configurations.creating { dependencies { allTestsRuntime(commonDep("junit")) allTestsRuntime(intellijCoreDep()) { includeJars("intellij-core") } - allTestsRuntime(intellijDep()) { includeJars("openapi", "idea", "idea_rt", "log4j") } + allTestsRuntime(intellijDep()) { includeJars("openapi", "idea", "idea_rt", "log4j", "jna") } testCompile(project(":kotlin-scripting-jvm-host")) testCompile(projectTests(":compiler:tests-common")) testCompile(project(":kotlin-scripting-compiler"))