maven多站点排除依赖
时间: 2023-11-13 09:57:27 浏览: 161
Maven 多项目依赖关系
对于 Maven 多站点排除依赖的问题,可以在 pom.xml 文件中使用 `<exclusions>` 标签来排除依赖。具体操作如下:
1. 打开 pom.xml 文件,找到需要排除依赖的模块。
2. 在该模块的 `<dependency>` 标签中添加 `<exclusions>` 标签。
3. 在 `<exclusions>` 标签中添加需要排除的依赖的 `<groupId>` 和 `<artifactId>`。
例如,如果需要排除 Spring Boot Starter Web 模块中的 Tomcat 依赖,可以在 pom.xml 文件中添加以下代码:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
```
这样就可以排除 Spring Boot Starter Web 模块中的 Tomcat 依赖了。
阅读全文