13 lines
375 B
Groovy
13 lines
375 B
Groovy
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
||
|
apply plugin: 'elasticsearch.rest-test'
|
||
|
|
||
|
dependencies {
|
||
|
testCompile "org.elasticsearch.plugin:x-pack-core:${version}"
|
||
|
testCompile project(path: xpackModule('data-frame'), configuration: 'runtime')
|
||
|
}
|
||
|
|
||
|
integTestCluster {
|
||
|
setting 'xpack.security.enabled', 'false'
|
||
|
setting 'xpack.license.self_generated.type', 'trial'
|
||
|
}
|