We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2baf4f6 commit cbdad07Copy full SHA for cbdad07
pom.xml
@@ -81,6 +81,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
81
<groupId>org.apache.maven.plugins</groupId>
82
<artifactId>maven-surefire-plugin</artifactId>
83
<version>2.18.1</version>
84
+ <configuration>
85
+ <!-- Don't try to load JNA from the host system, use our dependency instead (needed for Appveyor, which has an old JNA on it) -->
86
+ <argLine>-Djna.nosys=true</argLine>
87
+ <forkCount>1</forkCount>
88
+ <reuseForks>false</reuseForks>
89
+ </configuration>
90
</plugin>
91
92
<!-- Compile and use our build addon that compiles the Rust code -->
0 commit comments