mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
fc06f09b91
Relates to elastic/x-pack-elasticsearch#997 Original commit: elastic/x-pack-elasticsearch@863bf9abfe
17 lines
481 B
Groovy
17 lines
481 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'runtime')
|
|
}
|
|
|
|
integTestCluster {
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
setting 'xpack.watcher.enabled', 'false'
|
|
setting 'xpack.ml.enabled', 'true'
|
|
numNodes = 3
|
|
distribution = 'zip'
|
|
plugin ':x-pack-elasticsearch:plugin'
|
|
}
|