Skip to content

Commit

Permalink
Fix GPG sign (keycloak#10782)
Browse files Browse the repository at this point in the history
  • Loading branch information
stianst committed Mar 23, 2022
1 parent 6806802 commit f99412d
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions pom.xml
Expand Up @@ -2097,25 +2097,31 @@
</profile>

<profile>
<id>gpg-sign</id>
<id>gpg</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--batch</arg>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
<configuration>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit f99412d

Please sign in to comment.