Remove explicit jar specification from ide modules build scripts

They often change between ide versions and difficult to maintain
This commit is contained in:
Vyacheslav Gerasimov
2018-04-05 15:50:58 +03:00
parent 95684b9ecb
commit 7c02d55b23
19 changed files with 63 additions and 100 deletions
+5 -7
View File
@@ -8,15 +8,13 @@ dependencies {
compile(project(":idea"))
compile(project(":compiler:light-classes"))
compile(project(":compiler:frontend.java"))
compileOnly(intellijDep()) { includeJars("annotations", "openapi", "idea", "extensions", "util", "velocity", "boot", "gson",
"swingx-core", "forms_rt", "jdom", "log4j", "guava", "asm-all", "picocontainer",
rootProject = rootProject) }
compileOnly(intellijDep())
compileOnly(commonDep("com.google.code.findbugs", "jsr305"))
compileOnly(intellijPluginDep("junit")) { includeJars("idea-junit") }
compileOnly(intellijPluginDep("testng")) { includeJars("testng", "testng-plugin") }
compileOnly(intellijPluginDep("coverage")) { includeJars("coverage") }
compileOnly(intellijPluginDep("java-decompiler")) { includeJars("java-decompiler") }
compileOnly(intellijPluginDep("junit"))
compileOnly(intellijPluginDep("testng"))
compileOnly(intellijPluginDep("coverage"))
compileOnly(intellijPluginDep("java-decompiler"))
compileOnly(intellijPluginDep("IntelliLang"))
compileOnly(intellijPluginDep("copyright"))
compileOnly(intellijPluginDep("properties"))