2017-01-24 11:14:56 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2017-02-10 14:02:42 -05:00
|
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'runtime')
|
2017-01-24 11:14:56 -05:00
|
|
|
}
|
|
|
|
|
2017-02-22 03:56:52 -05:00
|
|
|
integTestCluster {
|
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.ml.enabled', 'false'
|
|
|
|
numNodes = 1
|
|
|
|
distribution = 'zip'
|
|
|
|
plugin ':x-pack-elasticsearch:plugin'
|
2017-01-24 11:14:56 -05:00
|
|
|
}
|