2019-09-11 11:39:58 +02:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
2019-04-26 20:19:19 +02:00
|
|
|
|
2020-02-26 08:13:41 -06:00
|
|
|
restResources {
|
|
|
|
restApi {
|
2020-03-19 12:28:59 -05:00
|
|
|
includeCore '_common', 'indices', 'index'
|
2020-02-26 08:13:41 -06:00
|
|
|
includeXpack 'enrich'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-26 20:19:19 +02:00
|
|
|
dependencies {
|
2019-11-14 11:01:23 +00:00
|
|
|
testCompile project(path: xpackModule('enrich'), configuration: 'runtime')
|
|
|
|
testCompile project(path: xpackModule('enrich:qa:common'), configuration: 'runtime')
|
2019-04-26 20:19:19 +02:00
|
|
|
}
|
|
|
|
|
2019-11-14 11:01:23 +00:00
|
|
|
testClusters.integTest {
|
|
|
|
testDistribution = 'DEFAULT'
|
|
|
|
setting 'xpack.license.self_generated.type', 'basic'
|
|
|
|
setting 'xpack.monitoring.collection.enabled', 'true'
|
2019-04-26 20:19:19 +02:00
|
|
|
}
|