Merge branch '3.3.x'

This commit is contained in:
Phillip Webb
2024-10-01 17:20:14 -07:00
2 changed files with 6 additions and 6 deletions

View File

@@ -46,16 +46,16 @@ task syncTestRepository(type: Sync) {
}
}
task copyAntSources(type: Copy) {
task syncAntSources(type: Sync) {
destinationDir file("${buildDir}/ant")
from project.layout.projectDirectory
include "*.xml"
into "${buildDir}/ant"
filter(springRepoistoryTransformers.ant())
}
task antRun(type: JavaExec) {
workingDir "${buildDir}/ant"
dependsOn syncTestRepository, copyAntSources, configurations.antDependencies
dependsOn syncTestRepository, syncAntSources, configurations.antDependencies
classpath = configurations.antDependencies;
mainClass = "org.apache.tools.ant.launch.Launcher"
args = [ "clean", "build" ]