27 lines
713 B
Groovy
27 lines
713 B
Groovy
evaluationDependsOn(xpackModule('core'))
|
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
esplugin {
|
|
name 'x-pack-index-lifecycle'
|
|
description 'Elasticsearch Expanded Pack Plugin - Index Lifecycle'
|
|
classname 'org.elasticsearch.xpack.indexlifecycle.IndexLifecycle'
|
|
extendedPlugins = ['x-pack-core']
|
|
hasNativeController false
|
|
requiresKeystore true
|
|
}
|
|
archivesBaseName = 'x-pack-index-lifecycle'
|
|
|
|
// TODO: enable this once we have tests
|
|
licenseHeaders.enabled = false
|
|
|
|
integTest.enabled = false
|
|
|
|
dependencies {
|
|
compileOnly "org.elasticsearch.plugin:x-pack-core:${version}"
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
}
|
|
|
|
run {
|
|
plugin xpackModule('core')
|
|
}
|