Skip to content

Commit e5b03a7

Browse files
committed
Second attempt to fix spring-boot-smoke-test-ant
Fix error introduced in commit d44e7c9 See gh-42333
1 parent 1dce2cd commit e5b03a7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ task copyAntSources(type: Copy) {
5454
}
5555

5656
task antRun(type: JavaExec) {
57+
workingDir "${buildDir}/ant"
5758
dependsOn syncTestRepository, copyAntSources, configurations.antDependencies
5859
classpath = configurations.antDependencies;
5960
mainClass = "org.apache.tools.ant.launch.Launcher"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
actual jars). Run with '$ java -jar target/*.jar'.
1212
</description>
1313

14-
<property name="lib.dir" location="${basedir}/build/ant/lib" />
14+
<property name="lib.dir" location="${basedir}/lib" />
1515
<property name="start-class" value="smoketest.ant.SampleAntApplication" />
1616

1717
<target name="clean-ivy-cache">

0 commit comments

Comments
 (0)