J'ai installé GPG via Homebrew avec brew install gpg
. Il est installé dans la version 2.2.17
.
Dans mon POM Maven, j'ai ce snippet :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
Cependant, en exécutant mvn clean verify
Je reçois cette erreur :
gpg: Beglaubigung fehlgeschlagen: Inappropriate ioctl for device
gpg: signing failed: Inappropriate ioctl for device
Comment puis-je corriger cette erreur ?