maven怎么排除依赖包的子依赖

1038
2023/9/26 23:04:42
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在Maven中,排除依赖包的子依赖可以通过在pom.xml文件中使用标签来实现。

例如,假设要排除spring-boot-starter-web依赖包的子依赖中的spring-boot-starter-tomcat依赖,可以在pom.xml文件中添加以下配置:

<dependencies>
<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>
</dependencies>

在上述配置中,通过在spring-boot-starter-web依赖包上使用标签,然后在其中添加标签来指定要排除的子依赖。在标签中,使用标签来指定要排除的依赖包的坐标。

保存pom.xml文件后,重新构建项目,Maven将会排除指定的子依赖。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: maven打包到本地仓库的方法是什么