William Brafford 5a0dca2491
Deprecate xpack.eql.enabled setting and make it a no-op (#61375) (#62491)
* Deprecate xpack.eql.enabled and make it a no-op
* Remove uses of xpack.eql.enabled
2020-09-17 14:17:27 -04:00

20 lines
459 B
Groovy

apply plugin: 'elasticsearch.java-rest-test'
apply plugin: 'elasticsearch.yaml-rest-test'
restResources {
restApi {
includeCore '_common', 'bulk', 'indices'
includeXpack 'eql', 'indices'
}
}
dependencies {
javaRestTestImplementation project(path: xpackModule('eql:qa:common'))
}
testClusters.all {
testDistribution = 'DEFAULT'
setting 'xpack.license.self_generated.type', 'basic'
setting 'xpack.monitoring.collection.enabled', 'true'
}