Fix Gradle configuration

This change was made to master, this commit brings it over to
index-lifecycle.

See #32409
This commit is contained in:
Gordon Brown 2018-08-23 12:08:16 -06:00
parent 1f13c77b49
commit 191bd7c031
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ esplugin {
archivesBaseName = 'x-pack-ilm' archivesBaseName = 'x-pack-ilm'
dependencies { 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') testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
} }