Home > Net >  netty dependency brings old version
netty dependency brings old version

Time:02-12

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? enter image description here 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.

  • Related