mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
c46a0e8708
Backport of #48849. Update `.editorconfig` to make the Java settings the default for all files, and then apply a 2-space indent to all `*.gradle` files. Then reformat all the files.
17 lines
415 B
Groovy
17 lines
415 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
|