From 5b0d908d8517fdc9b3760fa8eb6fa679999924a9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Fri, 2 Feb 2018 17:20:47 +0300 Subject: [PATCH] Add `log4j` & `jdom` to tests-common testCompile Fixes NCDFEs in IrBlackBoxCodegenTestGenerated --- compiler/tests-common/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests-common/build.gradle.kts b/compiler/tests-common/build.gradle.kts index 2c5b3836eeb..a6c41ef773a 100644 --- a/compiler/tests-common/build.gradle.kts +++ b/compiler/tests-common/build.gradle.kts @@ -28,7 +28,7 @@ dependencies { testCompile(androidDxJar()) { isTransitive = false } testCompile(intellijCoreDep()) { includeJars("intellij-core"); isTransitive = false } testCompile(intellijDep()) { - includeJars("openapi", "idea", "idea_rt", "guava", "trove4j", "picocontainer", "asm-all", rootProject = rootProject) + includeJars("openapi", "idea", "idea_rt", "guava", "trove4j", "picocontainer", "asm-all", "log4j", "jdom", rootProject = rootProject) isTransitive = false } }