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

16 lines
266 B
Kotlin

apply { plugin("kotlin") }
jvmTarget = "1.6"
dependencies {
compile(project(":compiler:util"))
compile(project(":core:descriptors"))
compileOnly(intellijDep()) { includeJars("trove4j") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}