2017-01-04 14:27:53 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
2015-12-24 06:06:36 -05:00
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2016-12-14 18:02:28 -05:00
|
|
|
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
2015-12-24 06:06:36 -05:00
|
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
|
|
|
}
|
|
|
|
|
|
|
|
integTest {
|
|
|
|
cluster {
|
2016-12-14 18:02:28 -05:00
|
|
|
plugin ':x-pack:elasticsearch'
|
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 05:41:21 -04:00
|
|
|
setting 'script.inline', 'true'
|
|
|
|
setting 'script.stored', 'true'
|
2016-11-21 04:52:55 -05:00
|
|
|
// Need to allow more compilations per minute because of the integration tests
|
|
|
|
setting 'script.max_compilations_per_minute', '100'
|
2015-12-24 06:06:36 -05:00
|
|
|
}
|
|
|
|
}
|