elasticsearch/qa/build.gradle

10 lines
235 B
Groovy

import org.elasticsearch.gradle.testclusters.TestClustersPlugin
subprojects { Project subproj ->
plugins.withType(TestClustersPlugin).whenPluginAdded {
testClusters.configureEach {
testDistribution = 'DEFAULT'
}
}
}