mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
d7c097e2b4
This is the xpack side of https://github.com/elastic/elasticsearch/pull/28805 Original commit: elastic/x-pack-elasticsearch@48cbe6623f
15 lines
425 B
Groovy
15 lines
425 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: xpackModule('core'), configuration: 'runtime')
|
|
testCompile project(path: xpackModule('ml'), configuration: 'runtime')
|
|
}
|
|
|
|
integTestCluster {
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.ml.enabled', 'false'
|
|
numNodes = 1
|
|
plugin xpackProject('plugin').path
|
|
}
|