Issue
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
Solution
<dependency>
<groupId>xxx</groupId>
<artifactId>xxx</artifactId>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
</exclusion>
</exclusions>
</dependency>
You need exclusions tag
Answered By - wuyd
Answer Checked By - Katrina (JavaFixing Volunteer)