如何从 spring-boot-starter-parent 中排除特定依赖项
Posted
技术标签:
【中文标题】如何从 spring-boot-starter-parent 中排除特定依赖项【英文标题】:How to exclude specific dependencies from spring-boot-starter-parent 【发布时间】:2018-12-16 18:21:06 【问题描述】:我正在使用旧版 Spring 应用程序并希望迁移到 Spring Boot。我的意图是使用spring-boot-starter-data-jpa
。为此,我在pom.xml
(管理所有spring-boot-dependencies
)中添加了以下部分:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
</parent>
但这搞砸了我需要暂时保留的某些依赖项。我目前正在使用 Selenium 依赖项(版本 2.53.0
;从另一个项目传递添加)但 spring-boot 正在获取 3.9.1
的依赖项。
我想排除 3.9.1
依赖项,但 exclusion
过滤器未按预期工作。
总结一下,我想使用spring-boot-starter-parent
和spring-boot-starter-data-jpa
,而不是来自spring-boot-dependencies
的托管selenium-java
。
感谢您在这方面的任何帮助。
【问题讨论】:
只需将<selenium.version>2.53.0</selenium>
添加到<properties>
标签。这会将 selenium 版本更改为您想要的版本。不要试图排除,然后包括自己。见docs.spring.io/spring-boot/docs/current/reference/htmlsingle/…
甜蜜!当我在父部分下添加spring-boot-starter-parent
时,这有效。您可能想添加一个答案;)谢谢伙计!
【参考方案1】:
而不是搞乱<excludes>
,然后尝试找出您需要再次包含的内容(在找出您排除的内容之后)。只需按照here in the Spring Boot Reference Guide 的说明覆盖版本即可。
假设您使用spring-boot-starter-parent
作为父级,您只需将<selenium.version>
添加到您的<properties>
部分即可指定您想要的版本。
<properties>
<selenium.version>2.53.0</selenium.version>
</properties>
这将使 Spring Boot 使用您想要的版本。
【讨论】:
在我的情况下,我有父级,但我想使用 spring-boot-starter-webflux,但父级已经有了 spring-boot-starter-web。在这里可以做什么? 此解决方案是否还会从 .m2 文件夹中删除其他版本依赖项?【参考方案2】:从 starter pom 中删除依赖关系。在 pom.xml 中使用 exclsuions 标签。例如去除执行器依赖
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>demo-1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>demo-1</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
【讨论】:
那行不通。执行器不是spring-boot-starter
的依赖项,因此不确定您要在此处显示的内容..
我只是举个例子来排除spring boot starter pom的依赖。【参考方案3】:
在 pom.xml 中提及您需要在排除标记中排除的依赖项。那么排除的依赖就不会被下载:
<dependency>
<groupId>sample.ProjectA</groupId>
<artifactId>Project-A</artifactId>
<version>1.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<!-- declare the exclusion here -->
<groupId>sample.ProjectB</groupId>
<artifactId>Project-B</artifactId>
</exclusion>
</exclusions>
</dependency>
【讨论】:
我知道exclusion
的工作原理,但我的要求有点不同以上是关于如何从 spring-boot-starter-parent 中排除特定依赖项的主要内容,如果未能解决你的问题,请参考以下文章
如何从外部从 GitHub 加载 JavaScript 文件? [复制]