Files
kotlin-fork/compiler/frontend.script/build.gradle.kts
T
2018-03-02 03:15:17 +03:00

22 lines
544 B
Kotlin

apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compile(projectDist(":kotlin-stdlib"))
compileOnly(project(":kotlin-reflect-api"))
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
runtime(project(":kotlin-reflect"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}