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'
|
|
}
|
|
}
|