2d8e73f3f6
some dependencies. Fixes #KT-17561 and related issues Warning: API changed slightly
34 lines
968 B
Kotlin
34 lines
968 B
Kotlin
|
|
description = "Kotlin scripting support utilities"
|
|
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-stdlib"))
|
|
compile(project(":kotlin-script-runtime"))
|
|
compileOnly(project(":compiler:cli"))
|
|
compileOnly(project(":compiler:daemon-common"))
|
|
compile(project(":kotlin-daemon-client"))
|
|
compileOnly("com.jcabi:jcabi-aether:0.10.1")
|
|
compileOnly("org.sonatype.aether:aether-api:1.13.1")
|
|
compileOnly("org.apache.maven:maven-core:3.0.3")
|
|
testCompileOnly(project(":compiler:cli"))
|
|
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
|
testRuntime(project(":kotlin-reflect"))
|
|
testCompile(commonDep("junit:junit"))
|
|
testRuntime(projectRuntimeJar(":kotlin-compiler"))
|
|
testRuntime("com.jcabi:jcabi-aether:0.10.1")
|
|
testRuntime("org.sonatype.aether:aether-api:1.13.1")
|
|
testRuntime("org.apache.maven:maven-core:3.0.3")
|
|
}
|
|
|
|
projectTest()
|
|
|
|
runtimeJar()
|
|
sourcesJar()
|
|
javadocJar()
|
|
|
|
publish()
|
|
|
|
ideaPlugin()
|