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

25 lines
359 B
Kotlin

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