在项目中引入了netty-all的4.1.94.FInal版本,但是其依赖的其他组件却是4.1.92.Final版本

在项目中引入了netty-all的4.1.94.FInal版本,但是其依赖的其他组件却是4.1.92.Final版本,如下图所示:

img


猜测可能与我的SpringBoot版本有关,因为我的SpringBoot版本是2.7.12,其默认的netty版本就是4.1.92.Final,但是我在父项目的版本管理里面添加了
版本控制,但是不起作用,请问这个问题怎么解决?

<properties>
        <netty.version>4.1.94.Final</netty.version>
 </properties>

在pom里显示引入指定版本netty


<dependency>
    <groupId>io.netty</groupId>
    <artifactId>netty-all</artifactId>
    <version>4.1.94.Final</version>
</dependency>