From 6660873e18c6f152dd700f777381329e1642f137 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Thu, 22 Mar 2018 21:21:39 +0100 Subject: [PATCH] Add annotations to dependencies of tests-common To prevent warnings "unknown enum constant Capitalization.Title" during the build --- 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 6d3c9e060bd..6a469f7008f 100644 --- a/compiler/tests-common/build.gradle.kts +++ b/compiler/tests-common/build.gradle.kts @@ -31,7 +31,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", "log4j", "jdom", rootProject = rootProject) + includeJars("openapi", "idea", "idea_rt", "guava", "trove4j", "picocontainer", "asm-all", "log4j", "jdom", "annotations", rootProject = rootProject) isTransitive = false } }