Merge branch '2.5.x'

Closes gh-28200
This commit is contained in:
Andy Wilkinson
2021-10-05 11:13:20 +01:00
4 changed files with 84 additions and 18 deletions

View File

@@ -36,12 +36,9 @@ task syncTestRepository(type: Sync) {
}
}
task syncAppSource(type: Sync) {
from "spring-boot-server-tests-app"
into "${buildDir}/spring-boot-server-tests-app"
filter { line ->
line.replace("id \"org.springframework.boot\"", "id \"org.springframework.boot\" version \"${project.version}\"")
}
task syncAppSource(type: org.springframework.boot.build.SyncAppSource) {
sourceDirectory = file("spring-boot-server-tests-app")
destinationDirectory = file("${buildDir}/spring-boot-server-tests-app")
}
task buildApps(type: GradleBuild) {