mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-14 00:45:30 +00:00
This change flattens the directory structure, both for the elasticsearch specific directories, as well as within the elasticsearch x-pack plugin. closes elastic/elasticsearch#2957 Original commit: elastic/x-pack-elasticsearch@45891a4632
18 lines
487 B
Groovy
18 lines
487 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:elasticsearch', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin ':x-plugins:elasticsearch'
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
setting 'http.port', '9400'
|
|
setting 'script.inline', 'true'
|
|
setting 'script.stored', 'true'
|
|
}
|
|
}
|