Merge branch '3.3.x'

This commit is contained in:
Phillip Webb 2024-10-01 16:26:37 -07:00
commit 07d2b5180c
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"