This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch release-4.0.0-M1-RC1 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 433f33ad7cd3ba02ed311be9bd499b1e75a0236f Author: Dan Haywood <[email protected]> AuthorDate: Thu Oct 9 23:08:18 2025 +0100 adds gpg plugin to bom/pom.xml removed accidentally --- bom/pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/bom/pom.xml b/bom/pom.xml index 3a96698f9c6..0251372b120 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -2170,6 +2170,24 @@ identified <url>${distMgmtSnapshotsUrl}</url> </snapshotRepository> </distributionManagement> + <build> + <plugins> + <!-- We want to sign the artifact, the POM, and all attached +artifacts (except for SHA-512 checksum) --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <executions> + <execution> + <id>sign-release-artifacts</id> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </profile> <!-- END SNIPPET: release-profile --> </profiles>
