838f1f91fc
So we could exclude them in IDEs which don't have android plugin (AppCode, CLion)
26 lines
456 B
Kotlin
26 lines
456 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" {}
|
|
}
|
|
|
|
runtimeJar {
|
|
archiveName = "android-output-parser-ide.jar"
|
|
}
|
|
|
|
ideaPlugin()
|