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