在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將會排除指定的子依賴。