From 7821366f6a34a8f5870cbc3fde76cbe5e479551e Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 21 Sep 2017 16:53:52 +0200 Subject: [PATCH] Add missing runtime dependency on TestNG and coverage plugins --- idea/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index 687ee201c71..fbe7bc55fa4 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -57,13 +57,13 @@ dependencies { testRuntime(ideaSdkDeps("*.jar")) testRuntime(ideaPluginDeps("*.jar", plugin = "junit")) - testRuntime(ideaPluginDeps("jcommander", "resources_en", plugin = "testng")) testRuntime(ideaPluginDeps("resources_en", plugin = "properties")) testRuntime(ideaPluginDeps("*.jar", plugin = "gradle")) testRuntime(ideaPluginDeps("*.jar", plugin = "Groovy")) - testRuntime(ideaPluginDeps("jacocoant", plugin = "coverage")) + testRuntime(ideaPluginDeps("*.jar", plugin = "coverage")) testRuntime(ideaPluginDeps("*.jar", plugin = "maven")) testRuntime(ideaPluginDeps("*.jar", plugin = "android")) + testRuntime(ideaPluginDeps("*.jar", plugin = "testng")) // deps below are test runtime deps, but made test compile to split compilation and running to reduce mem req testCompile(project(":plugins:android-extensions-compiler"))