Merge branch '3.4.x' into 3.5.x

Closes gh-46254
This commit is contained in:
Andy Wilkinson
2025-07-02 20:31:39 +01:00
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
spring.mavenRepositories();
spring.mavenRepositories()
}
resolutionStrategy {
eachPlugin {
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import org.springframework.boot.buildpack.platform.build.PullPolicy;
import org.springframework.boot.buildpack.platform.build.PullPolicy
plugins {
id 'java'
@@ -80,8 +80,8 @@ dependencies {
undertow("org.springframework.boot:spring-boot-starter-undertow")
}
def boolean isWindows() {
return File.separatorChar == '\\';
static boolean isWindows() {
return File.separatorChar == '\\'
}
["jetty", "tomcat", "undertow"].each { webServer ->
@@ -74,7 +74,7 @@ tasks.register("syncAntSources", Sync) {
tasks.register("antRun", JavaExec) {
workingDir = layout.buildDirectory.dir("ant")
dependsOn syncTestRepository, syncAntSources, configurations.antDependencies
classpath = configurations.antDependencies;
classpath = configurations.antDependencies
mainClass = "org.apache.tools.ant.launch.Launcher"
args = [ "clean", "build" ]
systemProperties = [