Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
mhalbritter opened this issue Feb 8, 2024 · 1 comment
Labels
status: superseded An issue that has been superseded by another

Comments

@mhalbritter
Copy link
Contributor

mhalbritter commented Feb 8, 2024

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)

@mhalbritter mhalbritter added the type: bug A general bug label Feb 8, 2024
@mhalbritter mhalbritter added this to the 3.1.x milestone Feb 8, 2024
@wilkinsona 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
@scottfrederick scottfrederick added status: superseded An issue that has been superseded by another and removed type: bug A general bug labels Feb 11, 2024
@scottfrederick scottfrederick removed this from the 3.1.x milestone Feb 11, 2024
@scottfrederick
Copy link
Contributor

Closing in favor of #39508

@scottfrederick scottfrederick closed this as not planned Won't fix, can't repro, duplicate, stale Feb 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: superseded An issue that has been superseded by another
Projects
None yet
Development

No branches or pull requests

2 participants