build.gradle 751 B

1234567891011121314151617181920212223
  1. apply plugin: 'elasticsearch.internal-es-plugin'
  2. apply plugin: 'elasticsearch.internal-cluster-test'
  3. esplugin {
  4. name 'x-pack-downsample'
  5. description 'Elasticsearch Expanded Pack Plugin - Downsample'
  6. classname 'org.elasticsearch.xpack.downsample.Downsample'
  7. extendedPlugins = ['x-pack-aggregate-metric']
  8. }
  9. base {
  10. archivesName = 'x-pack-downsample'
  11. }
  12. dependencies {
  13. compileOnly project(path: xpackModule('core'))
  14. testImplementation project(':modules:data-streams')
  15. testImplementation project(path: xpackModule('ilm'))
  16. compileOnly project(path: xpackModule('mapper-aggregate-metric'))
  17. testImplementation(testArtifact(project(xpackModule('core'))))
  18. testImplementation project(xpackModule('ccr'))
  19. }
  20. addQaCheckDependencies(project)