gpt4 book ai didi

selenium - 如何通过 Spring Boot 使用新版本的库

转载 作者:行者123 更新时间:2023-12-02 22:12:08 25 4
gpt4 key购买 nike

我正在使用 Spring Boot 1.5.9.RELEASE 开发一个应用程序,并使用 Gradle 作为构建工具。

我想在项目中使用SelenumHQ 3.8.1。

当我构建项目时,我注意到Selenium 2.53.1被添加到项目中(而不是3.8.1),所以我调查并找出了原因。

我的build.gradle中存在以下语句:

dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:1.5.9.RELEASE")
}
}

并且在该文件中,selenium.version 属性设置为“2.53.1”。

所以我将语句更改为

dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:1.5.9.RELEASE") {
bomProperty 'selenium.version', '3.8.1'
}
}
}

但现在 IDEA 将 3.8.1 和 2.53.1 显示为项目的依赖项,当我使用 gradle 构建工件时,只存在 2.53.1 依赖项,没有 3.8.1 的迹象。

如何更改此行为并使用 Selenium 3.8.1?

附注Selenium是由多个jar文件组成的,所以它不仅仅是一个Jar文件,我想使用gradle以最小化的方式更新所有这些文件。

最佳答案

我在 here 中找到了答案.

我将使用以下语句覆盖该属性:ext['selenium.version']='3.8.1' 语句。

关于selenium - 如何通过 Spring Boot 使用新版本的库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48065400/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com