标签:冲突 cat ons group ted nbsp 代码 mit ica
由于引入冲突导致,排出冲突即可代码如下
<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解决方法
标签:冲突 cat ons group ted nbsp 代码 mit ica
原文地址:https://www.cnblogs.com/kkvt/p/12393015.html