maven 排除某个类,从Maven中的依赖项中排除类
时间: 2023-10-23 16:23:22 浏览: 213
Maven 依赖详细理解.pdf
可以在 Maven 的依赖项中使用 `<exclusions>` 标签来排除某个类。例如:
```xml
<dependency>
<groupId>com.example</groupId>
<artifactId>example-library</artifactId>
<version>1.0.0</version>
<exclusions>
<exclusion>
<groupId>org.unwanted</groupId>
<artifactId>unwanted-library</artifactId>
</exclusion>
</exclusions>
</dependency>
```
在上面的例子中,`example-library` 的依赖项中的 `unwanted-library` 类将被排除。
另外,你也可以使用 Maven Dependency Plugin 的 `dependency:tree` 命令来查看依赖树,查看哪个依赖项引入了你不想要的类。然后再使用 `<exclusions>` 标签来排除这个依赖项中的类。
阅读全文