Make source set empty for Android modules of deleting the resulting JAR files in 'ideaPlugin' task

This commit is contained in:
Yan Zhulanow
2018-06-22 22:27:08 +03:00
parent 0e8a04c4ba
commit 88422fb7ce
6 changed files with 1291 additions and 6 deletions
@@ -0,0 +1,25 @@
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" {}
"test" {}
}
runtimeJar {
archiveName = "android-output-parser-ide.jar"
}
ideaPlugin()