24 lines
337 B
Kotlin
24 lines
337 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
configureIntellijPlugin {
|
|
setExtraDependencies("intellij-core")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compile(project(":js:js.ast"))
|
|
}
|
|
|
|
afterEvaluate {
|
|
dependencies {
|
|
compileOnly(intellijCoreJar())
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|