Add embeddable version of the jvm scripting host

#KT-27382 fixed
This commit is contained in:
Ilya Chernikov
2018-11-06 18:55:10 +03:00
parent d64ca8a8f9
commit 9c51f521a9
6 changed files with 142 additions and 0 deletions
@@ -0,0 +1,21 @@
plugins {
kotlin("jvm")
}
dependencies {
compile(project(":examples:scripting-jvm-simple-script"))
compileOnly(project(":kotlin-scripting-jvm-host"))
compile(project(":kotlin-script-util"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler-embeddable"))
testRuntimeOnly(project(":kotlin-scripting-jvm-host-embeddable"))
testRuntimeOnly(project(":kotlin-reflect"))
testRuntimeOnly(intellijDep()) { includeJars("guava", rootProject = rootProject) }
testCompile(commonDep("junit"))
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}