Merge branch '4.0.x' into 4.1.x

Closes gh-51647
This commit is contained in:
Andy Wilkinson
2026-09-09 11:00:01 +01:00
3 changed files with 38 additions and 12 deletions
@@ -35,11 +35,8 @@ tasks.register("syncMavenRepository", Sync) {
systemTest {
dependsOn syncMavenRepository
if (project.hasProperty("springBootVersion")) {
systemProperty "springBootVersion", project.properties["springBootVersion"]
} else {
systemProperty "springBootVersion", project.getVersion()
}
systemProperty "springBootVersion",
providers.gradleProperty("springBootVersion").getOrElse(project.getVersion().toString())
}
dependencies {