Colin Goodheart-Smithe 603fa47580 Adds an option to disable the ML plugin ()
Adds an `xpack.ml.enabled` node level setting that can be used to enable and disable the plugin. This will be important when we migrate to X-Pack

Closes 

Original commit: elastic/x-pack-elasticsearch@e5c4969a96
2017-01-24 16:14:56 +00:00

16 lines
374 B
Groovy

apply plugin: 'elasticsearch.standalone-rest-test'
apply plugin: 'elasticsearch.rest-test'
dependencies {
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
}
integTest {
cluster {
setting 'xpack.ml.enabled', 'false'
numNodes = 1
distribution = 'zip'
plugin ':prelert-legacy:elasticsearch'
}
}