2016-04-18 03:14:31 -04:00
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2016-10-01 03:46:43 -04:00
|
|
|
testCompile project(path: ':x-plugins:elasticsearch', configuration: 'runtime')
|
2016-04-18 03:14:31 -04:00
|
|
|
testCompile project(path: ':modules:lang-painless', configuration: 'runtime')
|
|
|
|
}
|
|
|
|
|
|
|
|
integTest {
|
|
|
|
cluster {
|
2016-10-01 03:46:43 -04:00
|
|
|
plugin ':x-plugins:elasticsearch'
|
2016-04-18 03:14:31 -04:00
|
|
|
setting 'script.inline', 'true'
|
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
|
|
}
|
|
|
|
}
|