浏览代码

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 年之前
父节点
当前提交
747fa721e4
共有 2 个文件被更改,包括 2 次插入0 次删除
  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
 }