Merge branch '3.3.x'

Closes gh-43649 in 3.4.x
Closes gh-43651
This commit is contained in:
Andy Wilkinson
2025-01-02 12:22:59 +00:00
54 changed files with 353 additions and 261 deletions

View File

@@ -47,14 +47,14 @@ task syncTestRepository(type: Sync) {
}
task syncAntSources(type: Sync) {
destinationDir file(layout.buildDirectory.dir("ant"))
destinationDir = file(layout.buildDirectory.dir("ant"))
from project.layout.projectDirectory
include "*.xml"
filter(springRepositoryTransformers.ant())
}
task antRun(type: JavaExec) {
workingDir layout.buildDirectory.dir("ant")
workingDir = layout.buildDirectory.dir("ant")
dependsOn syncTestRepository, syncAntSources, configurations.antDependencies
classpath = configurations.antDependencies;
mainClass = "org.apache.tools.ant.launch.Launcher"