16 lines
478 B
Groovy
16 lines
478 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-groovy', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack')
|
|
systemProperty 'es.script.inline', 'true'
|
|
systemProperty 'es.xpack.shield.enabled', 'false'
|
|
systemProperty 'es.xpack.monitoring.enabled', 'false'
|
|
}
|
|
}
|