dea69e4469
Split import handlers into multiple files Add empty Maven handler for Android Studio Add testRuntime dependency on kx-serialization-plugin for all modules which require compiler plugins in test classpath
26 lines
641 B
Kotlin
26 lines
641 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":idea"))
|
|
compileOnly(project(":idea:idea-maven"))
|
|
compileOnly(project(":idea:idea-gradle"))
|
|
compileOnly(project(":idea:idea-jvm"))
|
|
|
|
compile(intellijDep())
|
|
runtimeOnly(files(toolsJar()))
|
|
}
|
|
|
|
val intellijUltimateEnabled : Boolean by rootProject.extra
|
|
|
|
val ideaUltimatePluginDir: File by rootProject.extra
|
|
val ideaUltimateSandboxDir: File by rootProject.extra
|
|
|
|
if (intellijUltimateEnabled) {
|
|
runIdeTask("runUltimate", ideaUltimatePluginDir, ideaUltimateSandboxDir) {
|
|
dependsOn(":dist", ":ideaPlugin", ":ultimate:ideaUltimatePlugin")
|
|
}
|
|
}
|