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 a332cba17bf48f4eb2b40fdeb387426f452bd0b1 Author: Dan Haywood <[email protected]> AuthorDate: Thu Oct 9 15:38:32 2025 +0100 adds back in distributionManagement for bom --- bom/pom.xml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/bom/pom.xml b/bom/pom.xml index 7979c5b2002..3a96698f9c6 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -2145,4 +2145,33 @@ identified </developer> </developers> + <profiles> + <!-- START SNIPPET: release-profile --> + <profile> + <id>apache-release</id> + <activation> + <property> + <name>apache-release</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + <distributionManagement> + <repository> + <id>apache.releases.https</id> + <name>Apache Release Distribution Repository</name> + <url> + https://repository.apache.org/service/local/staging/deploy/maven2</url> + </repository> + <snapshotRepository> + <id>apache.snapshots.https</id> + <name>${distMgmtSnapshotsName}</name> + <url>${distMgmtSnapshotsUrl}</url> + </snapshotRepository> + </distributionManagement> + </profile> + <!-- END SNIPPET: release-profile --> + </profiles> + </project>
