mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
This commit updates the feature aware check ASM dependency to ASM 7.1. This gives us JDK 13 compatibility.
18 lines
422 B
Groovy
18 lines
422 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
|
|
dependencies {
|
|
compile 'org.ow2.asm:asm:7.1'
|
|
compile "org.elasticsearch:elasticsearch:${version}"
|
|
compile "org.elasticsearch.plugin:x-pack-core:${version}"
|
|
testCompile "org.elasticsearch.test:framework:${version}"
|
|
}
|
|
|
|
forbiddenApisMain.enabled = true
|
|
|
|
dependencyLicenses.enabled = false
|
|
dependenciesInfo.enabled = false
|
|
|
|
jarHell.enabled = false
|
|
|
|
thirdPartyAudit.enabled = false
|