16 lines
419 B
Groovy
16 lines
419 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:elasticsearch', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-painless', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin ':x-plugins:elasticsearch'
|
|
setting 'script.inline', 'true'
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
}
|
|
}
|