idea maven报 system omitted for duplicate解决方法

Posted test

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea maven报 system omitted for duplicate解决方法相关的知识,希望对你有一定的参考价值。

由于引入冲突导致,排出冲突即可代码如下

        <dependency>
            <groupId>${project.parent.groupId}</groupId>
            <artifactId>${project.parent.artifactId}-</artifactId>
            <version>${project.parent.version}</version>
            <exclusions>
                <!--这里排出有冲突的应用 防止maven报 system omitted for duplicate-->
                <exclusion>
                    <groupId>com.xx.xx</groupId>
                    <artifactId>xx-xx</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>xxx.xxx.xx</groupId>
                    <artifactId>xx-xx-xx</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

 

以上是关于idea maven报 system omitted for duplicate解决方法的主要内容,如果未能解决你的问题,请参考以下文章

maven install报The forked VM terminated without saying properly goodbye. VM crash or System.exit call

idea maven下的插件报红色波浪线,怎么才能

Intellij idea编译项目报错,项目里没有配maven,搞了好几天了,求大神帮忙。

idea中maven导入依赖报红的解决办法

Eclipse下导入maven项目。最后报错。求解决方法

为啥idea中的maven代码没有报错但是pom显示红色;