2018-04-25 15:23:21 -04:00
|
|
|
evaluationDependsOn(xpackModule('core'))
|
|
|
|
|
2018-01-22 08:52:22 -05:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
2018-05-17 09:17:15 -04:00
|
|
|
|
2018-01-22 08:52:22 -05:00
|
|
|
esplugin {
|
2018-08-02 13:05:11 -04:00
|
|
|
name 'x-pack-ilm'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Index Lifecycle Management'
|
2019-07-22 23:32:29 -04:00
|
|
|
classname 'org.elasticsearch.xpack.ilm.IndexLifecycle'
|
2018-04-25 15:23:21 -04:00
|
|
|
extendedPlugins = ['x-pack-core']
|
2018-01-22 08:52:22 -05:00
|
|
|
hasNativeController false
|
|
|
|
requiresKeystore true
|
|
|
|
}
|
2018-08-02 13:05:11 -04:00
|
|
|
archivesBaseName = 'x-pack-ilm'
|
2018-01-03 07:03:54 -05:00
|
|
|
|
|
|
|
dependencies {
|
2018-08-23 14:08:16 -04:00
|
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
2018-02-12 17:17:24 -05:00
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
2018-01-03 07:03:54 -05:00
|
|
|
}
|
|
|
|
|
2018-10-31 14:49:29 -04:00
|
|
|
// add all sub-projects of the qa sub-project
|
|
|
|
gradle.projectsEvaluated {
|
|
|
|
project.subprojects
|
|
|
|
.find { it.path == project.path + ":qa" }
|
|
|
|
.subprojects
|
|
|
|
.findAll { it.path.startsWith(project.path + ":qa") }
|
|
|
|
.each { check.dependsOn it.check }
|
|
|
|
}
|
2018-08-09 19:09:20 -04:00
|
|
|
|
2018-10-18 15:33:33 -04:00
|
|
|
integTest.enabled = false
|