Remove explicit jar specification from ide modules build scripts

They often change between ide versions and difficult to maintain

Original commit: 7c02d55b23
This commit is contained in:
Vyacheslav Gerasimov
2018-04-05 15:50:58 +03:00
parent 1fa4171942
commit 9164f7d2cb
+1 -1
View File
@@ -11,7 +11,7 @@ dependencies {
compile(project(":compiler:cli-common"))
compile(project(":compiler:frontend.java"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("jdom", "util") }
compileOnly(intellijDep())
}
sourceSets {