Skip to content

Commit

Permalink
chore: gpg config
Browse files Browse the repository at this point in the history
  • Loading branch information
hoegertn committed Jun 15, 2023
1 parent ae2cb40 commit e69d8a9
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,35 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>taimos-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<modules>
<module>daemon</module>
<module>test</module>
Expand Down

0 comments on commit e69d8a9

Please sign in to comment.