We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 385439c commit 798859aCopy full SHA for 798859a
pom.xml
@@ -100,18 +100,23 @@
100
<plugin>
101
<groupId>org.apache.maven.plugins</groupId>
102
<artifactId>maven-gpg-plugin</artifactId>
103
- <version>1.6</version>
104
- <configuration>
105
- <skip>true</skip>
106
- </configuration>
+ <version>1.5</version>
107
<executions>
108
<execution>
+ <id>sign-artifacts</id>
109
<phase>verify</phase>
110
<goals>
111
<goal>sign</goal>
112
</goals>
113
</execution>
114
</executions>
+ <configuration>
+ <!-- Prevent gpg from using pinentry programs -->
115
+ <gpgArguments>
116
+ <arg>--pinentry-mode</arg>
117
+ <arg>loopback</arg>
118
+ </gpgArguments>
119
+ </configuration>
120
</plugin>
121
122
<groupId>org.jacoco</groupId>
0 commit comments