Skip to content

Commit

Permalink
🔀 Merge origin/21-setup-gpg-plugin into origin/main (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
lengors authored Aug 8, 2024
2 parents f564119 + f5a83cc commit 68035a6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
<maven.jacoco.version>0.8.12</maven.jacoco.version>
<maven.source.version>3.3.1</maven.source.version>
<maven.junit.version>5.10.3</maven.junit.version>
<maven.gpg.version>3.2.4</maven.gpg.version>
<maven.jar.version>3.4.2</maven.jar.version>

<!-- SonarCloud -->
Expand Down Expand Up @@ -135,6 +136,24 @@
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.version}</version>
<configuration>
<keyname>${MAVEN_GPG_KEYNAME}</keyname>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
Expand Down

0 comments on commit 68035a6

Please sign in to comment.