We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8b2cc0 commit 16b06c3Copy full SHA for 16b06c3
pom.xml
@@ -798,14 +798,22 @@
798
<plugin>
799
<groupId>org.apache.maven.plugins</groupId>
800
<artifactId>maven-gpg-plugin</artifactId>
801
- <version>1.5</version>
+ <version>1.6</version>
802
<executions>
803
<execution>
804
<id>sign-artifacts</id>
805
<phase>verify</phase>
806
<goals>
807
<goal>sign</goal>
808
</goals>
809
+ <configuration>
810
+ <executable>gpg</executable>
811
+ <gpgArguments>
812
+ <arg>--pinentry-mode</arg>
813
+ <arg>loopback</arg>
814
+ </gpgArguments>
815
+ <passphrase>${gpg.passphrase}</passphrase>
816
+ </configuration>
817
</execution>
818
</executions>
819
</plugin>
0 commit comments