Skip to content

Gradle plugin allows the use of Gradle 7.4 but the documented and tested minimum is 7.5 #39453

@mhalbritter

Description

@mhalbritter

I think we missed to adapt org.springframework.boot.gradle.plugin.SpringBootPlugin#verifyGradleVersion. It still reads:

	private void verifyGradleVersion() {
		GradleVersion currentVersion = GradleVersion.current();
		if (currentVersion.compareTo(GradleVersion.version("7.4")) < 0) {
			throw new GradleException("Spring Boot plugin requires Gradle 7.x (7.4 or later). "
					+ "The current version is " + currentVersion);
		}
	}

Originally posted by @mhalbritter in #31215 (comment)

Metadata

Metadata

Assignees

No one assigned

    Labels

    status: supersededAn issue that has been superseded by another

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions