Fix spring-boot-smoke-test-ant

Fix error introduced in commit d44e7c9af2

See gh-42333
This commit is contained in:
Phillip Webb 2024-10-01 16:25:50 -07:00
parent 707d858a08
commit 1dce2cd62e
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"