Skip to content
Closed
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 server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
plugins {
id 'java'
id 'idea'
id 'org.springframework.boot' version '4.1.0'
id 'org.springframework.boot' version '4.1.1'

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Keep both Spring Boot plugin declarations aligned

The buildscript block still loads spring-boot-gradle-plugin:4.1.0, while this plugin request now specifies 4.1.1. Because the plugin is already present on the script classpath at a different version, Gradle rejects the request during project configuration, preventing every build that configures :server; update the classpath declaration to 4.1.1 as well (or remove the redundant declaration).

Useful? React with 👍 / 👎.

id 'jacoco'
}

Expand Down