Update test dependencies for the latest Spring Boot 3.5 snapshots

Spring Boot 3.5 updated JUnit Jupiter from v5.11 to v5.12.
With this new version, the junit-platform-launcher dependency
must be declared explicitly.
This commit is contained in:
Mahmoud Ben Hassine
2025-04-22 19:55:47 +02:00
parent df12a4bbc7
commit 8f4e1b78fa
12 changed files with 70 additions and 14 deletions

View File

@@ -13,9 +13,10 @@ dependencies {
implementation 'org.springframework:spring-test'
implementation 'org.springframework.boot:spring-boot-autoconfigure'
implementation 'org.springframework.boot:spring-boot-test-autoconfigure'
implementation 'org.springframework.boot:spring-boot-starter-test'
optional 'org.assertj:assertj-core'
optional 'org.junit.jupiter:junit-jupiter-api'
implementation 'org.springframework.boot:spring-boot-test'
implementation 'org.junit.jupiter:junit-jupiter-engine'
implementation 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.awaitility:awaitility'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
}