16 lines
374 B
Groovy
16 lines
374 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
setting 'xpack.ml.enabled', 'false'
|
|
numNodes = 1
|
|
distribution = 'zip'
|
|
plugin ':prelert-legacy:elasticsearch'
|
|
}
|
|
}
|