You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think we missed to adapt org.springframework.boot.gradle.plugin.SpringBootPlugin#verifyGradleVersion. It still reads:
privatevoidverifyGradleVersion() {
GradleVersioncurrentVersion = GradleVersion.current();
if (currentVersion.compareTo(GradleVersion.version("7.4")) < 0) {
thrownewGradleException("Spring Boot plugin requires Gradle 7.x (7.4 or later). "
+ "The current version is " + currentVersion);
}
}
wilkinsona
changed the title
Fail the build if Gradle below 7.5 is used
Gradle plugin allows the use of Gradle 7.4 but the documented and tested minimum is 7.5
Feb 8, 2024
I think we missed to adapt
org.springframework.boot.gradle.plugin.SpringBootPlugin#verifyGradleVersion
. It still reads:Originally posted by @mhalbritter in #31215 (comment)
The text was updated successfully, but these errors were encountered: