Skip to content

Commit 97d5396

Browse files
committed
[CI] Use a loopback pinentry for signing
1 parent 8fdb98d commit 97d5396

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,18 @@
9999
<plugin>
100100
<groupId>org.apache.maven.plugins</groupId>
101101
<artifactId>maven-gpg-plugin</artifactId>
102-
<version>1.6</version>
103102
<executions>
104103
<execution>
105104
<phase>verify</phase>
106105
<goals>
107106
<goal>sign</goal>
108107
</goals>
108+
<configuration>
109+
<gpgArguments>
110+
<arg>--pinentry-mode</arg>
111+
<arg>loopback</arg>
112+
</gpgArguments>
113+
</configuration>
109114
</execution>
110115
</executions>
111116
</plugin>

0 commit comments

Comments
 (0)