import org.elasticsearch.gradle.VersionProperties

apply plugin: 'elasticsearch.legacy-java-rest-test'
apply plugin: 'elasticsearch.authenticated-testclusters'

dependencies {
  javaRestTestImplementation(testArtifact(project(xpackModule('core'))))
}

testClusters.configureEach {
  testDistribution = 'DEFAULT'
  numberOfNodes = 4
  readinessEnabled = true
}
