Files
kotlin-fork/compiler/frontend.script/build.gradle.kts
T
2018-01-30 17:06:16 +03:00

21 lines
509 B
Kotlin

apply { plugin("kotlin") }
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" {}
}