15 lines
368 B
Groovy
15 lines
368 B
Groovy
|
apply plugin: 'elasticsearch.rest-test'
|
||
|
|
||
|
dependencies {
|
||
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'runtime')
|
||
|
}
|
||
|
|
||
|
integTest {
|
||
|
cluster {
|
||
|
plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack')
|
||
|
setting 'xpack.security.enabled', 'false'
|
||
|
setting 'xpack.monitoring.enabled', 'false'
|
||
|
setting 'http.port', '9400'
|
||
|
}
|
||
|
}
|