Skip to content

Commit

Permalink
Add release artifact signing profile (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
therealryan authored Aug 31, 2022
1 parent 0cf3a6a commit fd6754f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,29 @@
</plugins>
</build>
</profile>

<profile>
<!-- Signs artifacts for release -->
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit fd6754f

Please sign in to comment.