2019-06-14 03:57:37 -04:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
2019-02-18 05:07:29 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2019-04-25 12:23:12 -04:00
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'default')
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
2019-02-18 05:07:29 -05:00
|
|
|
testCompile project(path: xpackModule('data-frame'), configuration: 'runtime')
|
2019-06-04 16:50:23 -04:00
|
|
|
testCompile project(':client:rest-high-level')
|
2019-02-18 05:07:29 -05:00
|
|
|
}
|
|
|
|
|
2019-06-14 03:57:37 -04:00
|
|
|
testClusters.integTest {
|
2019-07-15 20:53:05 -04:00
|
|
|
testDistribution = 'DEFAULT'
|
2019-03-05 09:05:38 -05:00
|
|
|
setting 'xpack.security.enabled', 'true'
|
2019-02-18 05:07:29 -05:00
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2019-06-14 03:57:37 -04:00
|
|
|
user username: "x_pack_rest_user", password: "x-pack-test-password"
|
|
|
|
}
|