2021-05-06 20:02:35 +08:00
|
|
|
apply plugin: 'elasticsearch.internal-es-plugin'
|
2020-06-30 23:19:37 +08:00
|
|
|
|
|
|
|
esplugin {
|
|
|
|
name 'x-pack-stack'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Stack'
|
|
|
|
classname 'org.elasticsearch.xpack.stack.StackPlugin'
|
|
|
|
extendedPlugins = ['x-pack-core']
|
|
|
|
hasNativeController false
|
|
|
|
requiresKeystore true
|
|
|
|
}
|
|
|
|
archivesBaseName = 'x-pack-stack'
|
|
|
|
|
|
|
|
dependencies {
|
2021-02-07 19:08:02 +08:00
|
|
|
compileOnly project(path: xpackModule('core'))
|
2021-02-16 21:36:17 +08:00
|
|
|
testImplementation(testArtifact(project(xpackModule('core'))))}
|
2020-06-30 23:19:37 +08:00
|
|
|
|
2020-11-12 19:04:15 +08:00
|
|
|
addQaCheckDependencies()
|