This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new f333acf46 RATIS-2429. ratis-bom module fails to deploy due to missing
distributionManagement configuration (#1371)
f333acf46 is described below
commit f333acf46ada50d77df1c9f9cee25fa0db91b01f
Author: Potato <[email protected]>
AuthorDate: Tue Mar 10 21:43:27 2026 +0800
RATIS-2429. ratis-bom module fails to deploy due to missing
distributionManagement configuration (#1371)
---
ratis-bom/pom.xml | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/ratis-bom/pom.xml b/ratis-bom/pom.xml
index c023790cf..a62f2798d 100644
--- a/ratis-bom/pom.xml
+++ b/ratis-bom/pom.xml
@@ -22,8 +22,28 @@
<packaging>pom</packaging>
+ <distributionManagement>
+ <repository>
+ <id>${distMgmtStagingId}</id>
+ <name>${distMgmtStagingName}</name>
+ <url>${distMgmtStagingUrl}</url>
+ </repository>
+ <snapshotRepository>
+ <id>${distMgmtSnapshotsId}</id>
+ <name>${distMgmtSnapshotsName}</name>
+ <url>${distMgmtSnapshotsUrl}</url>
+ </snapshotRepository>
+ </distributionManagement>
+
<properties>
- <ratis.thirdparty.version>1.0.10</ratis.thirdparty.version>
+ <distMgmtSnapshotsId>apache.snapshots.https</distMgmtSnapshotsId>
+ <distMgmtSnapshotsName>Apache Development Snapshot
Repository</distMgmtSnapshotsName>
+
<distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
+ <distMgmtStagingId>apache.staging.https</distMgmtStagingId>
+ <distMgmtStagingName>Apache Release Distribution
Repository</distMgmtStagingName>
+
<distMgmtStagingUrl>https://repository.apache.org/service/local/staging/deploy/maven2</distMgmtStagingUrl>
+ <!-- Contains all shaded thirdparty dependencies; make sure to also update
in pom.xml -->
+ <ratis.thirdparty.version>1.0.11</ratis.thirdparty.version>
<!-- no testable code in this module -->
<skipTests>true</skipTests>
</properties>