Build: add client jar for aggs-matrix-stats (#24827)

This will be useful for the high level client to add support for the matrix stats aggregation, as we will ship with this jar by default like we do for parent-join-client which is aligned with distributing core with the modules already included.

Relates to #24796
This commit is contained in:
Luca Cavanna 2017-05-23 13:33:54 +02:00 committed by GitHub
parent 9087803cd9
commit 747fa721e4
2 changed files with 2 additions and 0 deletions

View File

@ -168,6 +168,7 @@ subprojects {
"org.elasticsearch.plugin:reindex-client:${version}": ':modules:reindex', "org.elasticsearch.plugin:reindex-client:${version}": ':modules:reindex',
"org.elasticsearch.plugin:lang-mustache-client:${version}": ':modules:lang-mustache', "org.elasticsearch.plugin:lang-mustache-client:${version}": ':modules:lang-mustache',
"org.elasticsearch.plugin:parent-join-client:${version}": ':modules:parent-join', "org.elasticsearch.plugin:parent-join-client:${version}": ':modules:parent-join',
"org.elasticsearch.plugin:aggs-matrix-stats-client:${version}": ':modules:aggs-matrix-stats',
"org.elasticsearch.plugin:percolator-client:${version}": ':modules:percolator', "org.elasticsearch.plugin:percolator-client:${version}": ':modules:percolator',
] ]
if (wireCompatVersions[-1].snapshot) { if (wireCompatVersions[-1].snapshot) {

View File

@ -20,4 +20,5 @@
esplugin { esplugin {
description 'Adds aggregations whose input are a list of numeric fields and output includes a matrix.' description 'Adds aggregations whose input are a list of numeric fields and output includes a matrix.'
classname 'org.elasticsearch.search.aggregations.matrix.MatrixAggregationPlugin' classname 'org.elasticsearch.search.aggregations.matrix.MatrixAggregationPlugin'
hasClientJar = true
} }