mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
This commit makes x-pack a module and adds it to the default distrubtion. It also creates distributions for zip, tar, deb and rpm which contain only oss code.
11 lines
254 B
Groovy
11 lines
254 B
Groovy
|
|
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
|
|
subprojects { Project subproj ->
|
|
subproj.tasks.withType(RestIntegTestTask) {
|
|
subproj.extensions.configure("${it.name}Cluster") { cluster ->
|
|
cluster.distribution = 'oss-zip'
|
|
}
|
|
}
|
|
}
|