We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 756c973 commit 78dc266Copy full SHA for 78dc266
pom.xml
@@ -308,14 +308,22 @@
308
</configuration>
309
</plugin>
310
<plugin>
311
- <groupId>org.simplify4u.plugins</groupId>
312
- <artifactId>sign-maven-plugin</artifactId>
313
- <version>1.0.1</version>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>3.0.1</version>
314
<executions>
315
<execution>
316
+ <id>sign-artifacts</id>
317
<goals>
318
<goal>sign</goal>
319
</goals>
320
+ <phase>verify</phase>
321
+ <configuration>
322
+ <gpgArguments>
323
+ <arg>--pinentry-mode</arg>
324
+ <arg>loopback</arg>
325
+ </gpgArguments>
326
+ </configuration>
327
</execution>
328
</executions>
329
0 commit comments