Skip to content

Commit 1dce2cd

Browse files
committed
Fix spring-boot-smoke-test-ant
Fix error introduced in commit d44e7c9 See gh-42333
1 parent 707d858 commit 1dce2cd

File tree

1 file changed

+1
-2
lines changed
  • spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-ant

1 file changed

+1
-2
lines changed

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-ant/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,11 @@ task syncTestRepository(type: Sync) {
4949
task copyAntSources(type: Copy) {
5050
from project.layout.projectDirectory
5151
include "*.xml"
52-
into "${buildDir}/antbuild"
52+
into "${buildDir}/ant"
5353
filter(springRepoistoryTransformers.ant())
5454
}
5555

5656
task antRun(type: JavaExec) {
57-
workingDir "${buildDir}/antbuild"
5857
dependsOn syncTestRepository, copyAntSources, configurations.antDependencies
5958
classpath = configurations.antDependencies;
6059
mainClass = "org.apache.tools.ant.launch.Launcher"

0 commit comments

Comments
 (0)