Files
kotlin-fork/compiler/plugin-api/build.gradle.kts
T
2017-09-19 21:37:27 +02:00

17 lines
256 B
Kotlin

apply { plugin("kotlin") }
jvmTarget = "1.6"
dependencies {
compile(ideaSdkCoreDeps("intellij-core"))
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}