2019-06-25 23:46:52 +08:00
|
|
|
import org.elasticsearch.gradle.testclusters.TestClustersPlugin
|
2018-02-24 00:03:17 +08:00
|
|
|
|
|
|
|
subprojects { Project subproj ->
|
2019-06-25 23:46:52 +08:00
|
|
|
plugins.withType(TestClustersPlugin).whenPluginAdded {
|
2021-09-23 15:45:59 +08:00
|
|
|
testClusters.configureEach {
|
2021-02-18 05:57:04 +08:00
|
|
|
testDistribution = 'DEFAULT'
|
2018-02-24 00:03:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|