maven排除多个依赖
时间: 2023-09-20 13:05:58 浏览: 79
在 Maven 中,可以使用 `<exclusions>` 标签排除多个依赖。例如,如果我们要排除 Spring Boot Starter Web 依赖的 Jackson databind 和 Jackson annotations 两个依赖,可以按照以下方式配置:
```xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>
...
</dependencies>
```
这样,当我们引入 Spring Boot Starter Web 依赖时,就会排除掉 Jackson databind 和 Jackson annotations 两个依赖。
阅读全文