Remove requiresKeystore when not actually required (elastic/x-pack-elasticsearch#3697)
Original commit: elastic/x-pack-elasticsearch@6bdd4ae2dc
This commit is contained in:
parent
3316c964c8
commit
39b4587d02
|
@ -15,7 +15,7 @@ esplugin {
|
|||
description 'Elasticsearch Expanded Pack Plugin - Core'
|
||||
classname 'org.elasticsearch.xpack.core.XPackPlugin'
|
||||
hasNativeController false
|
||||
requiresKeystore true
|
||||
requiresKeystore false
|
||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ esplugin {
|
|||
description 'Elasticsearch Expanded Pack Plugin - Deprecation'
|
||||
classname 'org.elasticsearch.xpack.deprecation.Deprecation'
|
||||
hasNativeController false
|
||||
requiresKeystore true
|
||||
requiresKeystore false
|
||||
extendedPlugins = ['x-pack-core']
|
||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||||
|
|
|
@ -6,7 +6,7 @@ esplugin {
|
|||
description 'Elasticsearch Expanded Pack Plugin - Graph'
|
||||
classname 'org.elasticsearch.xpack.graph.Graph'
|
||||
hasNativeController false
|
||||
requiresKeystore true
|
||||
requiresKeystore false
|
||||
extendedPlugins = ['x-pack-core']
|
||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||||
|
|
|
@ -6,7 +6,7 @@ esplugin {
|
|||
description 'Elasticsearch Expanded Pack Plugin - Logstash'
|
||||
classname 'org.elasticsearch.xpack.logstash.Logstash'
|
||||
hasNativeController false
|
||||
requiresKeystore true
|
||||
requiresKeystore false
|
||||
extendedPlugins = ['x-pack-core']
|
||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||||
|
|
|
@ -9,7 +9,7 @@ esplugin {
|
|||
description 'Elasticsearch Expanded Pack Plugin - Machine Learning'
|
||||
classname 'org.elasticsearch.xpack.ml.MachineLearning'
|
||||
hasNativeController true
|
||||
requiresKeystore true
|
||||
requiresKeystore false
|
||||
extendedPlugins = ['x-pack-core']
|
||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||||
|
|
|
@ -9,7 +9,7 @@ esplugin {
|
|||
description 'Elasticsearch Expanded Pack Plugin - Monitoring'
|
||||
classname 'org.elasticsearch.xpack.monitoring.Monitoring'
|
||||
hasNativeController false
|
||||
requiresKeystore true
|
||||
requiresKeystore false
|
||||
extendedPlugins = ['x-pack-core']
|
||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||||
|
|
|
@ -9,7 +9,7 @@ esplugin {
|
|||
description 'Elasticsearch Expanded Pack Plugin - Upgrade'
|
||||
classname 'org.elasticsearch.xpack.upgrade.Upgrade'
|
||||
hasNativeController false
|
||||
requiresKeystore true
|
||||
requiresKeystore false
|
||||
extendedPlugins = ['x-pack-core']
|
||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||||
|
|
|
@ -6,7 +6,7 @@ esplugin {
|
|||
description 'Elasticsearch Expanded Pack Plugin - Watcher'
|
||||
classname 'org.elasticsearch.xpack.watcher.Watcher'
|
||||
hasNativeController false
|
||||
requiresKeystore true
|
||||
requiresKeystore false
|
||||
extendedPlugins = ['x-pack-core']
|
||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||||
|
|
Loading…
Reference in New Issue