Browse Source

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
Luca Cavanna 8 năm trước cách đây
mục cha
commit
747fa721e4
2 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 1 0
      build.gradle
  2. 1 0
      modules/aggs-matrix-stats/build.gradle

+ 1 - 0
build.gradle

@@ -168,6 +168,7 @@ subprojects {
     "org.elasticsearch.plugin:reindex-client:${version}": ':modules:reindex',
     "org.elasticsearch.plugin:lang-mustache-client:${version}": ':modules:lang-mustache',
     "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',
   ]
   if (wireCompatVersions[-1].snapshot) {

+ 1 - 0
modules/aggs-matrix-stats/build.gradle

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