Update to Spring Boot 3.5.0
- Update to Spring Boot 3.5.0 - Update to Spring Boot 3.5.0's dependencies Closes gh-3368
This commit is contained in:
@@ -16,9 +16,10 @@ dependencies {
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-api"
|
||||
|
||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
|
||||
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
|
||||
|
||||
integrationTestCompile "org.seleniumhq.selenium:htmlunit-driver"
|
||||
integrationTestCompile "org.seleniumhq.selenium:selenium-support"
|
||||
integrationTestCompile "org.htmlunit:htmlunit"
|
||||
integrationTestCompile "org.seleniumhq.selenium:htmlunit3-driver"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,9 @@ class BootTests {
|
||||
|
||||
@AfterEach
|
||||
void tearDown() {
|
||||
this.driver.quit();
|
||||
if (this.driver != null) {
|
||||
this.driver.quit();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user