2019-06-18 03:10:05 -04:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
2017-01-24 11:14:56 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2019-11-14 06:01:23 -05:00
|
|
|
testCompile project(":x-pack:plugin:core")
|
|
|
|
testCompile project(path: xpackModule('ml'), configuration: 'runtime')
|
2017-01-24 11:14:56 -05:00
|
|
|
}
|
|
|
|
|
2019-06-18 03:10:05 -04:00
|
|
|
testClusters.integTest {
|
2019-11-14 06:01:23 -05:00
|
|
|
testDistribution = 'DEFAULT'
|
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.ml.enabled', 'false'
|
2017-01-24 11:14:56 -05:00
|
|
|
}
|