小编典典

如何从spring-boot-starter-parent中排除特定依赖项

spring-boot

我正在使用旧版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-parentspring-boot-starter-data- jpa而不是管理selenium-javaspring-boot-dependencies

感谢这方面的帮助。


阅读 2315

收藏
2020-05-30

共1个答案

小编典典

不要弄乱<excludes>然后尝试弄清楚您需要再次包含什么(在弄清楚要排除的内容之后)。只需覆盖《Spring
Boot参考指南》中此处
解释的版本即可。

假设您将spring-boot-starter- parent用作父项,则只需将a添加<selenium.version>到您的<properties>部分中即可指定所需的版本。

<properties>
  <selenium.version>2.53.0</selenium.version>
</properties>

这将使Spring Boot使用所需的版本。

2020-05-30