mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 13:38:49 +00:00
The data frame plugin allows users to create feature indexes by pivoting a source index. In a nutshell this can be understood as reindex supporting aggregations or similar to the so called entity centric indexing. Full history is provided in: feature/data-frame-transforms
15 lines
406 B
Groovy
15 lines
406 B
Groovy
/* Remove assemble on all qa projects because we don't need to publish
|
|
* artifacts for them. */
|
|
gradle.projectsEvaluated {
|
|
subprojects {
|
|
Task assemble = project.tasks.findByName('assemble')
|
|
if (assemble) {
|
|
assemble.enabled = false
|
|
}
|
|
Task dependenciesInfo = project.tasks.findByName('dependenciesInfo')
|
|
if (dependenciesInfo) {
|
|
dependenciesInfo.enabled = false
|
|
}
|
|
}
|
|
}
|