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 {
|
2017-02-10 14:02:42 -05:00
|
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'runtime')
|
2015-12-24 06:06:36 -05:00
|
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
|
|
|
}
|
|
|
|
|
2017-02-22 03:56:52 -05:00
|
|
|
integTestCluster {
|
|
|
|
plugin ':x-pack-elasticsearch:plugin'
|
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
|
|
// 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
|
|
|
}
|