7c02d55b23
They often change between ide versions and difficult to maintain
21 lines
377 B
Kotlin
21 lines
377 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
apply { plugin("jps-compatible") }
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
compileOnly(intellijDep())
|
|
compileOnly(intellijPluginDep("gradle"))
|
|
compileOnly(intellijPluginDep("android"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|