mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-06 10:59:12 +00:00
21 lines
582 B
Groovy
21 lines
582 B
Groovy
|
apply plugin: 'elasticsearch.testclusters'
|
||
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
||
|
apply plugin: 'elasticsearch.rest-test'
|
||
|
apply plugin: 'elasticsearch.rest-resources'
|
||
|
|
||
|
restResources {
|
||
|
restApi {
|
||
|
includeCore 'bulk', 'count', 'search', '_common', 'indices', 'index', 'cluster', 'rank_eval', 'reindex', 'update_by_query', 'delete_by_query'
|
||
|
includeXpack 'enrich'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation project(path: xpackModule('data-streams'))
|
||
|
}
|
||
|
|
||
|
testClusters.integTest {
|
||
|
testDistribution = 'DEFAULT'
|
||
|
setting 'xpack.license.self_generated.type', 'basic'
|
||
|
}
|