This is an automated email from the ASF dual-hosted git repository. zhongqiangchen pushed a commit to branch branch-0.3 in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
commit a5dfdcdd354c82d6e0605fd6824de5a5606c342c Author: zhongqiangchen <[email protected]> AuthorDate: Mon Jun 5 13:54:33 2023 +0800 [CELEBORN-635] Exclude netty-handler-ssl-ocsp from netty dependency (#1544) --- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pom.xml b/pom.xml index 15056d05a..8fe9eb5f2 100644 --- a/pom.xml +++ b/pom.xml @@ -319,6 +319,12 @@ <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>${netty.version}</version> + <exclusions> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty-handler-ssl-ocsp</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.commons</groupId>
