Idea X - MVN Duplicate dependency inspection
Kind of wrongly reports on duplicate dependency when pom uses dependency for "exclusions" the goal is to exclude unnecessary artifacts
<dependency>
<groupId>com.xxx.common</groupId>
<artifactId>common-core</artifactId>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tools</artifactId>
</exclusion>
...
请先登录再写评论。