Build: Fix kotlin.kotlin-scripting-jsr223-tes test runtime

This commit is contained in:
Vyacheslav Gerasimov
2020-06-13 11:07:39 +03:00
parent 07e18654d9
commit ef48c38eb4
2 changed files with 4 additions and 2 deletions
@@ -21,9 +21,10 @@ dependencies {
testRuntimeOnly(project(":kotlin-scripting-jsr223-unshaded")) testRuntimeOnly(project(":kotlin-scripting-jsr223-unshaded"))
testRuntimeOnly(project(":kotlin-compiler")) testRuntimeOnly(project(":kotlin-compiler"))
testRuntimeOnly(project(":kotlin-reflect")) testRuntimeOnly(project(":kotlin-reflect"))
embeddableTestRuntime(commonDep("junit")) embeddableTestRuntime(commonDep("junit"))
embeddableTestRuntime(project(":kotlin-scripting-jsr223")) embeddableTestRuntime(project(":kotlin-scripting-jsr223", configuration = "runtimeElements"))
embeddableTestRuntime(project(":kotlin-scripting-compiler-embeddable", configuration = "runtimeElements"))
embeddableTestRuntime(testSourceSet.output) embeddableTestRuntime(testSourceSet.output)
} }
@@ -27,6 +27,7 @@ dependencies {
testCompile(project(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(project(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompilerClasspath(project(":kotlin-compiler")) testCompilerClasspath(project(":kotlin-compiler"))
testCompilerClasspath(commonDep("org.jetbrains.intellij.deps", "trove4j"))
testCompilerClasspath(project(":kotlin-scripting-compiler")) testCompilerClasspath(project(":kotlin-scripting-compiler"))
testCompilerClasspath(project(":kotlin-daemon")) testCompilerClasspath(project(":kotlin-daemon"))
testCompilationClasspath(kotlinStdlib()) testCompilationClasspath(kotlinStdlib())