This is an automated email from the ASF dual-hosted git repository.

RongtongJin pushed a commit to branch codex/dledger-0.3.3.4-bump
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/codex/dledger-0.3.3.4-bump by 
this push:
     new 9cd937a5a1 fix(bazel): exclude rocketmq-remoting from coursier 
resolution
9cd937a5a1 is described below

commit 9cd937a5a1465ef03e052882789fd83786ec33b0
Author: 通融 <[email protected]>
AuthorDate: Wed Aug 19 10:38:36 2026 +0800

    fix(bazel): exclude rocketmq-remoting from coursier resolution
    
    dledger 0.3.3.4 depends on rocketmq-remoting:5.5.0, which Coursier
    fetches from Maven Central. That artifact transitively brings
    grpc-netty-shaded:1.53.0 with a strict [1.53.0] range on grpc-core,
    conflicting with the WORKSPACE-declared grpc 1.47.0 artifacts.
    
    Since rocketmq-remoting is built from source in this repo (//remoting),
    exclude it from external resolution — matching what PR #10947 already
    does for the DLedger 0.4.x line.
---
 WORKSPACE | 1 +
 1 file changed, 1 insertion(+)

diff --git a/WORKSPACE b/WORKSPACE
index b88eed80d3..7d055482b1 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -116,6 +116,7 @@ maven_install(
         "org.slf4j:slf4j-api:2.0.3",
         "org.javassist:javassist:3.20.0-GA",
     ],
+    excluded_artifacts = ["org.apache.rocketmq:rocketmq-remoting"],
     fetch_sources = False,
     repositories = [
         "https://repo1.maven.org/maven2";,

Reply via email to