在maven项目的pom文件中,可以通过exclusions元素来排除parent pom中定义的依赖。语法如下:
<dependency>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<version>version</version>
<exclusions>
<exclusion>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
</exclusion>
</exclusions>
</dependency>
其中groupId和artifactId分别代表要排除的依赖的groupId和artifactId。