Fix JSR-223 and scripting samples dependencies
This commit is contained in:
@@ -22,8 +22,8 @@ dependencies {
|
|||||||
testCompile(commonDep("junit:junit"))
|
testCompile(commonDep("junit:junit"))
|
||||||
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
||||||
testRuntime(project(":kotlin-reflect"))
|
testRuntime(project(":kotlin-reflect"))
|
||||||
compilerClasspath(projectRuntimeJar(":kotlin-compiler-embeddable"))
|
compilerClasspath(project(":kotlin-compiler-embeddable"))
|
||||||
compilerClasspath(projectRuntimeJar(":kotlin-scripting-compiler-embeddable"))
|
compilerClasspath(project(":kotlin-scripting-compiler-embeddable"))
|
||||||
compilerClasspath(project(":kotlin-reflect"))
|
compilerClasspath(project(":kotlin-reflect"))
|
||||||
compilerClasspath(kotlinStdlib())
|
compilerClasspath(kotlinStdlib())
|
||||||
compilerClasspath(project(":kotlin-script-runtime"))
|
compilerClasspath(project(":kotlin-script-runtime"))
|
||||||
|
|||||||
@@ -14,16 +14,16 @@ pill {
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile(kotlinStdlib())
|
compile(kotlinStdlib())
|
||||||
compile(project(":kotlin-script-runtime"))
|
compile(project(":kotlin-script-runtime"))
|
||||||
compile(projectRuntimeJar(":kotlin-compiler-embeddable"))
|
compile(project(":kotlin-compiler-embeddable"))
|
||||||
compile(project(":kotlin-script-util"))
|
compile(project(":kotlin-script-util"))
|
||||||
runtime(projectRuntimeJar(":kotlin-scripting-compiler-embeddable"))
|
runtime(project(":kotlin-scripting-compiler-embeddable"))
|
||||||
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
||||||
testCompile(commonDep("junit:junit"))
|
testCompile(commonDep("junit:junit"))
|
||||||
testRuntime(project(":kotlin-reflect"))
|
testRuntime(project(":kotlin-reflect"))
|
||||||
compileOnly(project(":compiler:cli-common")) // TODO: fix import (workaround for jps build)
|
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(":core:util.runtime")) // TODO: fix import (workaround for jps build)
|
||||||
testCompileOnly(project(":compiler:daemon-common")) // 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"))
|
testRuntime(project(":kotlin-scripting-compiler-embeddable"))
|
||||||
}
|
}
|
||||||
|
|
||||||
projectTest()
|
projectTest()
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ dependencies {
|
|||||||
compile(project(":examples:scripting-jvm-simple-script"))
|
compile(project(":examples:scripting-jvm-simple-script"))
|
||||||
compileOnly(project(":kotlin-scripting-jvm-host"))
|
compileOnly(project(":kotlin-scripting-jvm-host"))
|
||||||
compile(project(":kotlin-script-util"))
|
compile(project(":kotlin-script-util"))
|
||||||
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler-embeddable"))
|
testRuntimeOnly(project(":kotlin-compiler-embeddable"))
|
||||||
testRuntimeOnly(projectRuntimeJar(":kotlin-scripting-compiler-embeddable"))
|
testRuntimeOnly(project(":kotlin-scripting-compiler-embeddable"))
|
||||||
testRuntimeOnly(project(":kotlin-scripting-jvm-host-embeddable"))
|
testRuntimeOnly(project(":kotlin-scripting-jvm-host-embeddable"))
|
||||||
testRuntimeOnly(project(":kotlin-reflect"))
|
testRuntimeOnly(project(":kotlin-reflect"))
|
||||||
testRuntimeOnly(intellijDep()) { includeJars("guava", rootProject = rootProject) }
|
testRuntimeOnly(intellijDep()) { includeJars("guava", rootProject = rootProject) }
|
||||||
|
|||||||
Reference in New Issue
Block a user