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