2020-07-07 22:58:07 +08:00
|
|
|
apply plugin: 'elasticsearch.build'
|
2020-05-15 09:56:59 +08:00
|
|
|
apply plugin: 'elasticsearch.publish'
|
2020-03-18 22:08:13 +08:00
|
|
|
apply plugin: 'elasticsearch.rest-resources'
|
2020-04-22 07:18:18 +08:00
|
|
|
apply plugin: 'elasticsearch.validate-rest-spec'
|
2020-07-07 01:13:01 +08:00
|
|
|
apply plugin: 'elasticsearch.yaml-rest-test'
|
2016-04-13 23:26:47 +08:00
|
|
|
|
2020-07-07 01:13:01 +08:00
|
|
|
restResources {
|
|
|
|
restTests {
|
|
|
|
includeCore '*'
|
|
|
|
}
|
|
|
|
}
|
2020-02-26 08:46:32 +08: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-07-07 22:58:07 +08:00
|
|
|
|
2020-10-13 04:57:29 +08:00
|
|
|
testClusters.all {
|
|
|
|
module ':modules:mapper-extras'
|
|
|
|
}
|
|
|
|
|
2020-11-26 17:30:06 +08:00
|
|
|
tasks.named("test").configure {enabled = false }
|
|
|
|
tasks.named("jarHell").configure {enabled = false }
|