OpenSearch/x-pack/plugin/eql/qa/rest/build.gradle

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'
}