Merge branch '2.3.x' into 2.4.x

Fixes gh-24521 in 2.4.2
This commit is contained in:
Scott Frederick
2020-12-16 14:53:55 -06:00
6 changed files with 59 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
plugins {
id 'war'
id 'org.springframework.boot' version '{version}'
}
bootBuildImage {
jar = bootWar.archiveFile
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

View File

@@ -3,5 +3,9 @@ plugins {
id 'org.springframework.boot' version '{version}'
}
if (project.hasProperty('applyWarPlugin')) {
apply plugin: 'war'
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'