mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
f888082ce6
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
448 B
Groovy
16 lines
448 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack')
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
setting 'http.port', '9400'
|
|
}
|
|
}
|