Fix jps tests

Original commit: e76cd802d8
This commit is contained in:
Ilya Chernikov
2017-11-24 11:56:19 +01:00
committed by Vyacheslav Gerasimov
parent efdf6f2e8d
commit 3b060ca659
+3 -3
View File
@@ -31,12 +31,12 @@ dependencies {
afterEvaluate { afterEvaluate {
dependencies { dependencies {
compile(intellijExtra("jps-standalone") { include("jps-builders.jar", "jps-builders-6.jar") }) compileOnly(intellijExtra("jps-standalone") { include("jps-builders.jar", "jps-builders-6.jar") })
testCompileOnly(intellijExtra("jps-standalone") { include("jps-builders.jar", "jps-builders-6.jar") })
testCompile(intellij { include("openapi.jar", "idea.jar") }) testCompile(intellij { include("openapi.jar", "idea.jar") })
testCompile(intellijExtra("jps-build-test")) testCompile(intellijExtra("jps-build-test"))
testRuntime(intellijCoreJar())
testRuntime(intellij()) testRuntime(intellij())
testRuntime(intellijExtra("jps-standalone")) testRuntime(intellijCoreJar())
} }
} }