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