Upgrade JNA to 4.2.2 and remove optionality
This commit upgrades JNA from version 4.1.0 to 4.2.2. Additionally, this dependency is now non-optional as JNA is dual-licensed with Apache License 2.0 since JNA 4.0.0. Relates #19045
This commit is contained in:
parent
a5908a5da5
commit
7f10174362
|
@ -7,8 +7,7 @@ jts = 1.13
|
|||
jackson = 2.7.1
|
||||
log4j = 1.2.17
|
||||
slf4j = 1.6.2
|
||||
jna = 4.1.0
|
||||
|
||||
jna = 4.2.2
|
||||
|
||||
# test dependencies
|
||||
randomizedrunner = 2.3.2
|
||||
|
|
|
@ -89,7 +89,7 @@ dependencies {
|
|||
compile "log4j:log4j:${versions.log4j}", optional
|
||||
compile "log4j:apache-log4j-extras:${versions.log4j}", optional
|
||||
|
||||
compile "net.java.dev.jna:jna:${versions.jna}", optional
|
||||
compile "net.java.dev.jna:jna:${versions.jna}"
|
||||
|
||||
if (isEclipse == false || project.path == ":core-tests") {
|
||||
testCompile("org.elasticsearch.test:framework:${version}") {
|
||||
|
|
Loading…
Reference in New Issue