We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46eba09 commit fb92b7fCopy full SHA for fb92b7f
1 file changed
pom.xml
@@ -505,6 +505,26 @@
505
<groupId>org.apache.maven.plugins</groupId>
506
<artifactId>maven-javadoc-plugin</artifactId>
507
</plugin>
508
+ <plugin>
509
+ <groupId>org.apache.maven.plugins</groupId>
510
+ <artifactId>maven-gpg-plugin</artifactId>
511
+ <executions>
512
+ <execution>
513
+ <id>sign-artifacts</id>
514
+ <phase>verify</phase>
515
+ <goals>
516
+ <goal>sign</goal>
517
+ </goals>
518
+ <configuration>
519
+ <!-- This is necessary for gpg to not try to use the pinentry programs -->
520
+ <gpgArguments>
521
+ <arg>--pinentry-mode</arg>
522
+ <arg>loopback</arg>
523
+ </gpgArguments>
524
+ </configuration>
525
+ </execution>
526
+ </executions>
527
+ </plugin>
528
<plugin>
529
<groupId>org.sonatype.central</groupId>
530
<artifactId>central-publishing-maven-plugin</artifactId>
0 commit comments