OpenSearch/x-pack/plugin/transform/qa/single-node-tests/build.gradle

17 lines
596 B
Groovy

apply plugin: 'elasticsearch.java-rest-test'
dependencies {
javaRestTestImplementation project(path: xpackModule('core'), configuration: 'default')
javaRestTestImplementation project(path: xpackModule('core'), configuration: 'testArtifacts')
javaRestTestImplementation project(path: xpackModule('transform'))
testImplementation project(':client:rest-high-level')
}
testClusters.all {
testDistribution = 'DEFAULT'
setting 'xpack.security.enabled', 'true'
setting 'xpack.license.self_generated.type', 'trial'
user username: "x_pack_rest_user", password: "x-pack-test-password"
}