mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
Backport of #58924. Closes #46106. Introduce a mechanism for writing deprecation logs to a data stream as well as to disk.
25 lines
632 B
Groovy
25 lines
632 B
Groovy
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
|
name 'x-pack-deprecation'
|
|
description 'Elasticsearch Expanded Pack Plugin - Deprecation'
|
|
classname 'org.elasticsearch.xpack.deprecation.Deprecation'
|
|
extendedPlugins = ['x-pack-core']
|
|
}
|
|
archivesBaseName = 'x-pack-deprecation'
|
|
|
|
// 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 }
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(":x-pack:plugin:core")
|
|
}
|
|
|
|
integTest.enabled = false
|