From 60b3fa3b07301d855240851064cbf3db1433e004 Mon Sep 17 00:00:00 2001 From: Ilya Chernikov Date: Sun, 3 Mar 2019 11:11:15 +0100 Subject: [PATCH] Fix embeddable host test --- .../examples/scripting/jvm-embeddable-host/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/examples/scripting/jvm-embeddable-host/build.gradle.kts b/libraries/examples/scripting/jvm-embeddable-host/build.gradle.kts index b20ec776f7f..67de83f4017 100644 --- a/libraries/examples/scripting/jvm-embeddable-host/build.gradle.kts +++ b/libraries/examples/scripting/jvm-embeddable-host/build.gradle.kts @@ -8,6 +8,7 @@ dependencies { compileOnly(project(":kotlin-scripting-jvm-host")) compile(project(":kotlin-script-util")) testRuntimeOnly(projectRuntimeJar(":kotlin-compiler-embeddable")) + testRuntimeOnly(projectRuntimeJar(":kotlin-scripting-compiler-embeddable")) testRuntimeOnly(project(":kotlin-scripting-jvm-host-embeddable")) testRuntimeOnly(project(":kotlin-reflect")) testRuntimeOnly(intellijDep()) { includeJars("guava", rootProject = rootProject) }