From 191bd7c03162f31f88404c08958a8010eb1cff78 Mon Sep 17 00:00:00 2001 From: Gordon Brown Date: Thu, 23 Aug 2018 12:08:16 -0600 Subject: [PATCH] Fix Gradle configuration This change was made to master, this commit brings it over to index-lifecycle. See #32409 --- x-pack/plugin/ilm/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugin/ilm/build.gradle b/x-pack/plugin/ilm/build.gradle index a9e9258b3f3..6c3880d78d8 100644 --- a/x-pack/plugin/ilm/build.gradle +++ b/x-pack/plugin/ilm/build.gradle @@ -13,7 +13,8 @@ esplugin { archivesBaseName = 'x-pack-ilm' dependencies { - compileOnly project(path: xpackModule('core'), configuration: 'shadow') + // "org.elasticsearch.plugin:x-pack-core:${version}" doesn't work with idea because the testArtifacts are also here + compileOnly project(path: xpackModule('core'), configuration: 'default') testCompile project(path: xpackModule('core'), configuration: 'testArtifacts') }