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

20 lines
464 B
Kotlin

apply { plugin("kotlin") }
jvmTarget = "1.6"
dependencies {
compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm"))
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("annotations", "asm-all", "trove4j", "guava-21.0") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}