Proper handling of the scripting compiler plugin in JSR-223 with daemon

This commit is contained in:
Ilya Chernikov
2019-02-06 15:02:47 +01:00
parent df0b648cea
commit 731df8d3cc
9 changed files with 51 additions and 12 deletions
@@ -17,6 +17,7 @@ dependencies {
testCompile(project(":kotlin-test:kotlin-test-junit"))
testRuntime(project(":kotlin-reflect"))
compilerClasspath(projectRuntimeJar(":kotlin-compiler-embeddable"))
compilerClasspath(projectRuntimeJar(":kotlin-scripting-compiler-embeddable"))
compilerClasspath(project(":kotlin-reflect"))
compilerClasspath(kotlinStdlib())
compilerClasspath(project(":kotlin-script-runtime"))
@@ -17,6 +17,7 @@ dependencies {
compileOnly(project(":compiler:cli-common")) // TODO: fix import (workaround for jps build)
testCompileOnly(project(":core:util.runtime")) // TODO: fix import (workaround for jps build)
testCompileOnly(project(":compiler:daemon-common")) // TODO: fix import (workaround for jps build)
testRuntime(projectRuntimeJar(":kotlin-scripting-compiler-embeddable"))
}
projectTest()