如果一个我的项目中呈现依赖抵触,能够在 pom 文件中应用 <exclusion> 标签来解决这个问题。
<dependencies>
<dependency>
<groupId>com.cy</groupId>
<artifactId>12-dbpms-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId></groupId>
<artifactId></artifactId>
</exclusion>
<exclusion>
<groupId></groupId>
<artifactId></artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>