I am using a recent dependency of grpc-netty. The issue is it is bringing older versions of io.netty dependencies (4.1.27) I looked in the grpc-netty project and the used io.netty dependency version is 4.1.63. Any idea what can be the reason for having this dependencies bring older versions of transitive dependencies? Thank you
CodePudding user response:
<dependency>
<groupId>xxx</groupId>
<artifactId>xxx</artifactId>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
</exclusion>
</exclusions>
You need exclusions tag
CodePudding user response:
Exclude your netty dependency.