Account for GPG 1.2

This commit is contained in:
jamesagnew 2019-08-07 10:43:30 -04:00
parent 6aa7916ba7
commit d9247a2021
1 changed files with 10 additions and 0 deletions

10
pom.xml
View File

@ -2286,6 +2286,16 @@
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!--
These arguments are needed for GPG 2.1+ per
https://stackoverflow.com/questions/53992950/maven-gpg-plugin-failing-with-inappropriate-ioctl-for-device-when-running-unde
-->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>