a64a76d5fc
It has no effect in Kotlin 1.3 Only enable coroutines if '-ReleaseCoroutines' is used
23 lines
536 B
Kotlin
23 lines
536 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":kotlin-stdlib"))
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
runtimeOnly(project(":kotlin-reflect"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|