Skip to content

Commit a84adfb

Browse files
committed
Use shadow plugin in ccr
1 parent f3dae85 commit a84adfb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

x-pack/plugin/ccr/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ check.dependsOn(internalClusterTest, 'qa:multi-cluster:followClusterTest', 'qa:m
3737

3838
dependencies {
3939
compileOnly "org.elasticsearch:elasticsearch:${version}"
40-
compileOnly "org.elasticsearch.plugin:x-pack-core:${version}"
40+
compileOnly project(path: xpackModule('core'), configuration: 'shadow')
4141
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
4242
}
4343

x-pack/plugin/ccr/qa/multi-cluster-with-security/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.elasticsearch.gradle.test.RestIntegTestTask
33
apply plugin: 'elasticsearch.standalone-test'
44

55
dependencies {
6-
testCompile project(path: xpackModule('core'), configuration: 'runtime')
6+
testCompile project(path: xpackModule('core'), configuration: 'shadow')
77
testCompile project(path: xpackModule('ccr'), configuration: 'runtime')
88
}
99

x-pack/plugin/ccr/qa/multi-cluster/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.elasticsearch.gradle.test.RestIntegTestTask
33
apply plugin: 'elasticsearch.standalone-test'
44

55
dependencies {
6-
testCompile project(path: xpackModule('core'), configuration: 'runtime')
6+
testCompile project(path: xpackModule('core'), configuration: 'shadow')
77
testCompile project(path: xpackModule('ccr'), configuration: 'runtime')
88
}
99

0 commit comments

Comments
 (0)