2017-02-08 16:58:55 +00:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2017-02-10 11:02:42 -08:00
|
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'runtime')
|
2017-02-08 16:58:55 +00:00
|
|
|
}
|
|
|
|
|
2017-02-22 00:56:52 -08:00
|
|
|
integTestCluster {
|
|
|
|
setting 'xpack.security.enabled', 'false'
|
2017-04-13 10:50:03 +02:00
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
|
|
setting 'xpack.watcher.enabled', 'false'
|
2017-02-22 00:56:52 -08:00
|
|
|
setting 'xpack.ml.enabled', 'true'
|
|
|
|
numNodes = 3
|
|
|
|
distribution = 'zip'
|
|
|
|
plugin ':x-pack-elasticsearch:plugin'
|
2017-02-08 16:58:55 +00:00
|
|
|
}
|