a122cba862
#KT-29405
21 lines
506 B
Kotlin
21 lines
506 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(kotlinStdlib())
|
|
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" {}
|
|
}
|