Merge branch '3.3.x'

Closes gh-42931
This commit is contained in:
Andy Wilkinson
2024-10-29 20:27:13 +00:00
11 changed files with 84 additions and 41 deletions

View File

@@ -32,10 +32,11 @@ task syncIntegrationTestSources(type: Sync) {
}
processResources {
def version = project.version
eachFile {
filter { it.replace('${spring-boot.version}', project.version) }
filter { it.replace('${spring-boot.version}', version) }
}
inputs.property "version", project.version
inputs.property "version", version
}
task integrationTest {