Second attempt to 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:56:37 -07:00
parent 1dce2cd62e
commit e5b03a7741
2 changed files with 2 additions and 1 deletions

View File

@@ -54,6 +54,7 @@ task copyAntSources(type: Copy) {
}
task antRun(type: JavaExec) {
workingDir "${buildDir}/ant"
dependsOn syncTestRepository, copyAntSources, configurations.antDependencies
classpath = configurations.antDependencies;
mainClass = "org.apache.tools.ant.launch.Launcher"

View File

@@ -11,7 +11,7 @@
actual jars). Run with '$ java -jar target/*.jar'.
</description>
<property name="lib.dir" location="${basedir}/build/ant/lib" />
<property name="lib.dir" location="${basedir}/lib" />
<property name="start-class" value="smoketest.ant.SampleAntApplication" />
<target name="clean-ivy-cache">