mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 18:35:25 +00:00
This reverts commit elastic/x-pack-elasticsearch@cc79e19911. We'll merge this when we're good and ready. Original commit: elastic/x-pack-elasticsearch@b3ef4f2836
15 lines
423 B
Groovy
15 lines
423 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
|
|
forbiddenApisMain {
|
|
// does not depend on core, so only jdk and http signatures should be checked
|
|
signaturesURLs = [this.class.getResource('/forbidden/jdk-signatures.txt')]
|
|
}
|
|
|
|
thirdPartyAudit.enabled = false
|
|
licenseHeaders.enabled = false
|
|
test.enabled = false
|
|
jarHell.enabled = false
|
|
// Not published so no need to assemble
|
|
tasks.remove(assemble)
|
|
build.dependsOn.remove('assemble')
|