Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.junit.vintage:junit-vintage-engine:5.9.2'
implementation 'org.junit.vintage:junit-vintage-engine:6.1.3'

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incompatible JUnit major version bump

High Severity

Bumping junit-vintage-engine alone to 6.1.3 breaks alignment with Spring Boot 3.0.4, which still manages JUnit Jupiter 5.9.2 and Platform 1.9.2 via spring-boot-starter-test. JUnit 6 requires Platform, Jupiter, and Vintage to share the same major line, so the test classpath can fail engine discovery or load with linkage errors when ./gradlew test runs.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 0bb1969. Configure here.

runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
Expand Down
Loading