mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-11 07:25:23 +00:00
This commit migrates all of the `shield.` settings to `xpack.security.` and makes changes to use the new Settings infrastructure in core. As a cleanup, this commit also renames Shield to Security since this class is only in master and will not affect 2.x. See elastic/elasticsearch#1441 Original commit: elastic/x-pack-elasticsearch@a5a9798b1b
16 lines
450 B
Groovy
16 lines
450 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-groovy', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack')
|
|
setting 'script.inline', 'true'
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
}
|
|
}
|