Add annotations to dependencies of tests-common

To prevent warnings "unknown enum constant Capitalization.Title" during
the build
This commit is contained in:
Alexander Udalov
2018-03-22 21:21:39 +01:00
parent 13df75ef74
commit 6660873e18
+1 -1
View File
@@ -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
}
}