Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
Fixed wrong JNA dependency version, we need 4.5.0 for SIRIUS
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-pluskal committed Jul 28, 2019
1 parent bddae8c commit 2864890
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ dependencies {
compile 'com.sun.xml.bind:jaxb-impl:2.3.2'
compile 'javax.activation:javax.activation-api:1.2.0'
compile 'javax.mail:javax.mail-api:1.6.2'
compile 'net.java.dev.jna:jna:5.0.0'
compile 'org.openjfx:javafx-controls:12.0.1'
compile 'org.openjfx:javafx-swing:12.0.1'
compile 'org.openjfx:javafx-fxml:12.0.1'
Expand Down
13 changes: 6 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,12 @@
<groupId>edu.ucar</groupId>
<artifactId>netcdf4</artifactId>
<version>4.5.5</version>
<exclusions>
<exclusion>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ostermiller</groupId>
Expand Down Expand Up @@ -646,13 +652,6 @@
<version>1.6.2</version>
</dependency>

<!-- JNA runtime error fix -->
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.0.0</version>
</dependency>

<!-- JavaFX has been removed from JDK 11 and is a separate module now -->
<dependency>
<groupId>org.openjfx</groupId>
Expand Down

0 comments on commit 2864890

Please sign in to comment.