Transform Maven settings with proper plugin repository tag

This commit adapts d44e7c9 to transforms plugin repositories using the
correct root tag. Previously, they were transformed with the regular
<repository> tag, which is invalid.

Closes gh-42687
This commit is contained in:
Stéphane Nicoll
2024-10-15 10:39:59 +02:00
parent 4cf0f86990
commit b0dd42e9b9
6 changed files with 32 additions and 22 deletions

View File

@@ -50,7 +50,7 @@ task syncAntSources(type: Sync) {
destinationDir file("${buildDir}/ant")
from project.layout.projectDirectory
include "*.xml"
filter(springRepoistoryTransformers.ant())
filter(springRepositoryTransformers.ant())
}
task antRun(type: JavaExec) {