15 lines
330 B
Groovy
15 lines
330 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
numNodes = 3
|
|
distribution = 'zip'
|
|
plugin ':prelert-legacy:elasticsearch'
|
|
}
|
|
}
|