2015-12-24 12:06:36 +01:00
|
|
|
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 {
|
2016-07-15 14:36:13 -07:00
|
|
|
plugin ':x-plugins:elasticsearch:x-pack'
|
2016-03-22 17:40:45 -04:00
|
|
|
setting 'xpack.security.enabled', 'false'
|
2016-03-15 20:01:01 -04:00
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
|
|
setting 'http.port', '9400'
|
2016-08-18 11:41:21 +02:00
|
|
|
setting 'script.inline', 'true'
|
|
|
|
setting 'script.stored', 'true'
|
2015-12-24 12:06:36 +01:00
|
|
|
}
|
|
|
|
}
|