Skip to content

Commit 262202b

Browse files
committed
Revert to JNR-FFI 2.1.13
Windows CI builds on GitHub fail with 2.1.15. This reverts back to the version before commit 96c2ead.
1 parent a88c2bc commit 262202b

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

pom.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,17 @@
1818
<license.licenseName>apache_v2</license.licenseName>
1919
</properties>
2020
<dependencies>
21+
<dependency>
22+
<groupId>com.github.jnr</groupId>
23+
<artifactId>jffi</artifactId>
24+
<version>1.2.23</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.github.jnr</groupId>
28+
<artifactId>jffi</artifactId>
29+
<version>1.2.23</version>
30+
<classifier>native</classifier>
31+
</dependency>
2132
<dependency>
2233
<groupId>com.github.jnr</groupId>
2334
<artifactId>jnr-constants</artifactId>
@@ -26,7 +37,13 @@
2637
<dependency>
2738
<groupId>com.github.jnr</groupId>
2839
<artifactId>jnr-ffi</artifactId>
29-
<version>2.1.15</version>
40+
<version>2.1.13</version>
41+
<exclusions>
42+
<exclusion>
43+
<groupId>com.github.jnr</groupId>
44+
<artifactId>jffi</artifactId>
45+
</exclusion>
46+
</exclusions>
3047
</dependency>
3148
<dependency>
3249
<groupId>com.google.code.findbugs</groupId>
@@ -116,6 +133,9 @@
116133
<usedDependency>org.lmdbjava:lmdbjava-native-windows-x86_64</usedDependency>
117134
<usedDependency>org.lmdbjava:lmdbjava-native-osx-x86_64</usedDependency>
118135
</usedDependencies>
136+
<ignoredDependencies>
137+
<ignoredDependency>com.github.jnr:jffi</ignoredDependency>
138+
</ignoredDependencies>
119139
</configuration>
120140
</plugin>
121141
<plugin>

0 commit comments

Comments
 (0)