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 21:16:32 +02:00
parent 1a017dced2
commit db87f877ac
26 changed files with 47 additions and 27 deletions

View File

@@ -12,7 +12,10 @@ dependencies {
testImplementation(testFixtures(project(':spring-statemachine-data-common')))
testImplementation(testFixtures(project(':spring-statemachine-core')))
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-test'
testImplementation 'org.springframework.boot:spring-boot-test-autoconfigure'
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'org.junit.platform:junit-platform-launcher'
testRuntimeOnly 'org.springframework.boot:spring-boot-starter-data-mongodb'
testRuntimeOnly 'org.springframework.boot:spring-boot-starter-web'
}