Merge branch '3.2.x' into 3.3.x

This commit is contained in:
Phillip Webb 2024-10-01 16:26:32 -07:00
commit 212e67b1cb
1 changed files with 1 additions and 2 deletions

View File

@ -49,12 +49,11 @@ task syncTestRepository(type: Sync) {
task copyAntSources(type: Copy) {
from project.layout.projectDirectory
include "*.xml"
into "${buildDir}/antbuild"
into "${buildDir}/ant"
filter(springRepoistoryTransformers.ant())
}
task antRun(type: JavaExec) {
workingDir "${buildDir}/antbuild"
dependsOn syncTestRepository, copyAntSources, configurations.antDependencies
classpath = configurations.antDependencies;
mainClass = "org.apache.tools.ant.launch.Launcher"