Fix running tests in compiler plugins

This commit is contained in:
Nikolay Krasko
2019-12-24 18:46:34 +03:00
parent 5583b57ed7
commit 70ff3d36d0
3 changed files with 1 additions and 13 deletions
+1
View File
@@ -67,6 +67,7 @@ dependencies {
Platform[192].orHigher {
testCompile(intellijDep()) { includeJars("platform-util-ui", "platform-concurrency", "platform-objectSerializer") }
testCompile(intellijDep("java"))
}
Platform[193].orHigher {
@@ -13,11 +13,6 @@ dependencies {
runtime(kotlinStdlib())
testRuntimeOnly(intellijDep()) {
includeJars("guava", rootProject = rootProject)
}
testRuntimeOnly(project(":kotlin-compiler"))
Platform[192].orHigher {
testRuntimeOnly(intellijDep()) { includeJars("platform-concurrency") }
}
-8
View File
@@ -15,15 +15,7 @@ dependencies {
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("asm-all", rootProject = rootProject) }
runtime(kotlinStdlib())
testRuntimeOnly(intellijDep()) {
includeJars("guava", rootProject = rootProject)
}
testRuntimeOnly(project(":kotlin-compiler"))
Platform[192].orHigher {
testRuntimeOnly(intellijDep()) { includeJars("platform-concurrency") }
}
testCompile(project(":compiler:backend"))
testCompile(project(":compiler:cli"))
testCompile(projectTests(":compiler:tests-common"))