OpenSearch/x-pack/plugin/rollup/build.gradle

17 lines
474 B
Groovy

apply plugin: 'elasticsearch.esplugin'
esplugin {
name 'x-pack-rollup'
description 'Elasticsearch Expanded Pack Plugin - Rollup'
classname 'org.elasticsearch.xpack.rollup.Rollup'
extendedPlugins = ['x-pack-core']
}
archivesBaseName = 'x-pack-rollup'
dependencies {
compileOnly project(":server")
compileOnly project(path: xpackModule('core'), configuration: 'default')
testImplementation project(path: xpackModule('core'), configuration: 'testArtifacts')
}