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