Skip to content

Commit

Permalink
For #1346: added gpg config to pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
paulodamaso committed May 5, 2020
1 parent 20ade9e commit 8b2ddbe
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pom.xml
Expand Up @@ -332,5 +332,36 @@ The MIT License (MIT)
</plugins>
</build>
</profile>
<profile>
<id>jcabi-gpg</id>
<activation>
<property>
<name>gpg.keyname</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>jcabi-sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration combine.self="override">
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 8b2ddbe

Please sign in to comment.