mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
23049391be
This commit upgrades the ASM dependency used in the feature aware check to 7.3.1. This gives support for JDK 14. Additionally, now that Gradle understands JDK 13, it means we can remove a restriction on running the feature aware check to JDK 12 and lower.
18 lines
360 B
Groovy
18 lines
360 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
|
|
dependencies {
|
|
compile 'org.ow2.asm:asm:7.3.1'
|
|
compile project(':server')
|
|
compile project(':x-pack:plugin:core')
|
|
testCompile project(':test:framework')
|
|
}
|
|
|
|
forbiddenApisMain.enabled = true
|
|
|
|
dependencyLicenses.enabled = false
|
|
dependenciesInfo.enabled = false
|
|
|
|
jarHell.enabled = false
|
|
|
|
thirdPartyAudit.enabled = false
|