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

23 lines
336 B
Kotlin

apply { plugin("kotlin") }
jvmTarget = "1.6"
configureIntellijPlugin()
dependencies {
compile(project(":compiler:util"))
compile(project(":core:descriptors"))
}
afterEvaluate {
dependencies {
compileOnly(intellij { include("trove4j.jar") })
}
}
sourceSets {
"main" { projectDefault() }
"test" {}
}