SpringCloud 里面 Dubbo版本问题

问题遇到的现象和发生背景

我正在练习SpringCloud项目,父依赖中引入了SpringCloud Alibaba的依赖统一管理
我希望能够排除掉SpringCloud Alibaba里面的Dubbo版本限制
试了很多方法都没能成功

问题相关代码,请勿粘贴截图

父依赖

            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>2.2.2.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <!--spring-cloud-dependencies-->
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Hoxton.SR1</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>com.alibaba.cloud</groupId>
                <artifactId>spring-cloud-alibaba-dependencies</artifactId>
                <version>2.1.0.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>

子依赖(我想用的依赖)

        <dependency>
            <groupId>org.apache.dubbo</groupId>
            <artifactId>dubbo-spring-boot-autoconfigure</artifactId>
            <version>2.7.14</version>
        </dependency>
运行结果及报错内容

SpringCloud Alibaba里面限制了版本为2.7.3,我希望使用我自己的版本

我的解答思路和尝试过的方法

我试过排除,但是不管用

我想要达到的结果

排除掉SpringCloud Alibaba自带的Dubbo依赖

试试在子模块pom文件中定义一个管理dubbo版本的属性覆盖掉dubbo的版本。