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

20 lines
466 B
Kotlin

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