Merge branch '2.5.x'
Closes gh-28200
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user