[Spec tests] Fix dependencies for spec tests generator

This commit is contained in:
anastasiia.spaseeva
2020-09-08 16:14:47 +03:00
parent 9d3426486b
commit a12e22bba4
+4 -1
View File
@@ -7,7 +7,10 @@ dependencies {
testCompile(projectTests(":compiler"))
Platform[192].orHigher {
testCompileOnly(intellijDep()) {
includeJars("gson", "groovy-all", rootProject = rootProject)
includeJars("groovy-all", rootProject = rootProject)
}
testCompile(intellijDep()) {
includeJars("gson", rootProject = rootProject)
}
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
testRuntimeOnly(intellijPluginDep("java"))