2016-09-13 17:05:52 -04:00
|
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
apply plugin: 'nebula.maven-base-publish'
|
2020-03-19 13:29:36 -04:00
|
|
|
apply plugin: 'elasticsearch.rest-resources'
|
2020-04-22 15:14:03 -04:00
|
|
|
apply plugin: 'elasticsearch.validate-rest-spec'
|
2016-04-13 11:26:47 -04:00
|
|
|
|
2019-04-09 14:52:50 -04:00
|
|
|
test.enabled = false
|
2016-09-13 17:05:52 -04:00
|
|
|
jarHell.enabled = false
|
2020-02-26 09:13:41 -05:00
|
|
|
|
|
|
|
artifacts {
|
|
|
|
restSpecs(new File(projectDir, "src/main/resources/rest-api-spec/api"))
|
|
|
|
restTests(new File(projectDir, "src/main/resources/rest-api-spec/test"))
|
|
|
|
}
|
2020-04-22 15:14:03 -04:00
|
|
|
|
|
|
|
validateRestSpec {
|
|
|
|
ignore "cat.thread_pool.json"
|
|
|
|
ignore "indices.put_mapping.json"
|
|
|
|
}
|