a64a76d5fc
It has no effect in Kotlin 1.3 Only enable coroutines if '-ReleaseCoroutines' is used
30 lines
596 B
Kotlin
30 lines
596 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-script-runtime"))
|
|
compile(project(":kotlin-stdlib"))
|
|
compile(project(":kotlin-scripting-common"))
|
|
compile(project(":kotlin-scripting-jvm"))
|
|
compile(project(":kotlin-script-util"))
|
|
compileOnly(project(":compiler:cli"))
|
|
compileOnly(intellijCoreDep())
|
|
runtime(projectRuntimeJar(":kotlin-compiler"))
|
|
testCompile(commonDep("junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
standardPublicJars()
|
|
|
|
publish()
|
|
|