depend on newest JNA to avoid ABI mismatch

This commit is contained in:
Jonathan Shook 2022-05-31 21:01:06 -05:00
parent 7b1b41ec85
commit a4fc7a080e
2 changed files with 20 additions and 2 deletions

View File

@ -99,6 +99,18 @@
<dependencyManagement>
<dependencies>
<!-- due to https://github.com/oshi/oshi/issues/1289 -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.11.0</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>5.11.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<version>${junit.jupiter.version}</version>

View File

@ -24,9 +24,15 @@
<dependencies>
<!-- logging -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
</dependency>
<!-- The ONLY upstream module in project from nb-api -->
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>nb-annotations</artifactId>