24 lines
521 B
Groovy
24 lines
521 B
Groovy
apply plugin: 'opensearch.build'
|
|
apply plugin: 'opensearch.publish'
|
|
apply plugin: 'opensearch.rest-resources'
|
|
apply plugin: 'opensearch.validate-rest-spec'
|
|
apply plugin: 'opensearch.yaml-rest-test'
|
|
|
|
restResources {
|
|
restTests {
|
|
includeCore '*'
|
|
}
|
|
}
|
|
|
|
artifacts {
|
|
restSpecs(new File(projectDir, "src/main/resources/rest-api-spec/api"))
|
|
restTests(new File(projectDir, "src/main/resources/rest-api-spec/test"))
|
|
}
|
|
|
|
testClusters.all {
|
|
module ':modules:mapper-extras'
|
|
}
|
|
|
|
test.enabled = false
|
|
jarHell.enabled = false
|