2018-01-20 00:30:17 -05:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
|
|
|
name 'x-pack-deprecation'
|
|
|
|
description 'Elasticsearch Expanded Pack Plugin - Deprecation'
|
|
|
|
classname 'org.elasticsearch.xpack.deprecation.Deprecation'
|
2018-01-21 11:00:51 -05:00
|
|
|
hasNativeController false
|
2018-01-20 00:30:17 -05:00
|
|
|
requiresKeystore true
|
|
|
|
extendedPlugins = ['x-pack-core']
|
|
|
|
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
|
|
|
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
|
|
|
}
|
|
|
|
archivesBaseName = 'x-pack-deprecation'
|
|
|
|
|
|
|
|
// TODO: enable this once we have tests
|
|
|
|
licenseHeaders.enabled = false
|
|
|
|
|
|
|
|
integTest.enabled = false
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
provided "org.elasticsearch:elasticsearch:${version}"
|
|
|
|
|
|
|
|
provided "org.elasticsearch.plugin:x-pack-core:${version}"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyLicenses {
|
|
|
|
ignoreSha 'x-pack-core'
|
|
|
|
}
|
|
|
|
|
|
|
|
run {
|
|
|
|
plugin ':x-pack-elasticsearch:plugin:core'
|
|
|
|
}
|