Maven 引用jar包冲突 Intellij 查找排除JAR包的依赖关系(Maven Helper)

Maven 引用jar包冲突 ,Intellij 查找排除JAR包的依赖关系(Maven Helper)

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
    <exclusions> <!--移除冲突包-->
        <exclusion>
            <groupId>org.junit.vintage</groupId>
            <artifactId>junit-vintage-engine</artifactId>
        </exclusion>
    </exclusions>
</dependency>

不确定冲突包的情况下,可以借助于插件

安装插件 Windows 类似

 

 

 

 

 

 

 

 

 

 

 

posted @ 2021-06-12 11:46  VipSoft  阅读(457)  评论(0编辑  收藏  举报