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:
@@ -9,5 +9,10 @@ dependencies {
|
||||
api('org.springframework:spring-core')
|
||||
api('org.springframework:spring-context')
|
||||
compileOnly 'com.google.code.findbugs:jsr305'
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||
testImplementation('org.springframework.boot:spring-boot-test')
|
||||
testImplementation('org.junit.jupiter:junit-jupiter-engine')
|
||||
testImplementation('org.junit.jupiter:junit-jupiter-params')
|
||||
testImplementation('org.junit.platform:junit-platform-launcher')
|
||||
testImplementation("org.mockito:mockito-junit-jupiter")
|
||||
testImplementation('org.assertj:assertj-core')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user