mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
e44b8b1e2e
* Remove unnecessary usage of Gradle dependency substitution rules (#42773) (cherry picked from commit 12d583dbf6f7d44f00aa365e34fc7e937c3c61f7)
17 lines
425 B
Groovy
17 lines
425 B
Groovy
evaluationDependsOn(xpackModule('core'))
|
|
|
|
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'
|
|
|
|
dependencies {
|
|
compileOnly project(":x-pack:plugin:core")
|
|
}
|
|
|
|
integTest.enabled = false
|