maven解决omitted for duplicate(依赖冲突)
生活随笔
收集整理的這篇文章主要介紹了
maven解决omitted for duplicate(依赖冲突)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>//產生omitted for duplicate的依賴的ja對應的g
<artifactId>spring-boot</artifactId>//產生omitted for duplicate的依賴jar對應的a
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</exclusion>
</exclusions>
</dependency>
總結
以上是生活随笔為你收集整理的maven解决omitted for duplicate(依赖冲突)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 移除xlsm格式的excel中的宏密码
- 下一篇: 什么是UML?