在Maven中,可以使用
<dependency>
<groupId>org.example</groupId>
<artifactId>example-artifact</artifactId>
<version>1.0.0</version>
<exclusions>
<exclusion>
<groupId>org.unwanted</groupId>
<artifactId>unwanted-artifact</artifactId>
</exclusion>
</exclusions>
</dependency>
在上面的例子中,我們排除了groupId為"org.unwanted"、artifactId為"unwanted-artifact"的依賴。
注意:排除依賴只會排除直接依賴關系,而不會排除傳遞依賴關系。如果想要排除傳遞依賴關系,可以使用