阅读量:4
在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"的依赖。
注意:排除依赖只会排除直接依赖关系,而不会排除传递依赖关系。如果想要排除传递依赖关系,可以使用