Skip to content

Commit

Permalink
ci: add GPG settings
Browse files Browse the repository at this point in the history
  • Loading branch information
paodb committed Sep 11, 2023
1 parent ceb39ce commit 793d413
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,32 @@
</plugins>
</build>
</profile>
<profile>
<id>gpg</id>
<activation>
<property>
<name>env.gpg.passphrase</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>demo-jar</id>
<build>
Expand Down

0 comments on commit 793d413

Please sign in to comment.