13 lines
312 B
Groovy
13 lines
312 B
Groovy
apply plugin: 'elasticsearch.java-rest-test'
|
|
|
|
//dependencies {
|
|
// testImplementation project(":x-pack:plugin:core")
|
|
// testImplementation project(path: xpackModule('ml'))
|
|
//}
|
|
|
|
testClusters.all {
|
|
testDistribution = 'DEFAULT'
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.ml.enabled', 'false'
|
|
}
|