From 1c5cd1b3a0ff48c6cfd687844f9cade36f9f767c Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Tue, 9 Jan 2018 14:32:29 +0900 Subject: [PATCH] Minor: Fix problem in IDE with @TestOnly annotation resolution --- idea/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index 954e53b4b61..0edcd8d0bca 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -32,7 +32,7 @@ dependencies { // compile(project(":kotlin-daemon-client")) { isTransitive = false } compile(project(":kotlin-script-util")) { isTransitive = false } - compile(ideaSdkCoreDeps("intellij-core", "util")) + compile(ideaSdkCoreDeps("intellij-core", "util", "annotations")) compileOnly(ideaSdkDeps("openapi", "idea", "velocity", "boot", "gson", "swingx-core", "jsr305", "forms_rt"))