Skip to content

Commit 191bd7c

Browse files
committed
Fix Gradle configuration
This change was made to master, this commit brings it over to index-lifecycle. See #32409
1 parent 1f13c77 commit 191bd7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

x-pack/plugin/ilm/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ esplugin {
1313
archivesBaseName = 'x-pack-ilm'
1414

1515
dependencies {
16-
compileOnly project(path: xpackModule('core'), configuration: 'shadow')
16+
// "org.elasticsearch.plugin:x-pack-core:${version}" doesn't work with idea because the testArtifacts are also here
17+
compileOnly project(path: xpackModule('core'), configuration: 'default')
1718
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
1819
}
1920

0 commit comments

Comments
 (0)