Merge branch '2.7.x' into 3.0.x

Closes gh-37587
This commit is contained in:
Scott Frederick
2023-09-26 14:06:50 -05:00
6 changed files with 118 additions and 15 deletions

View File

@@ -0,0 +1,10 @@
plugins {
id 'java'
id 'org.springframework.boot' version '{version}'
}
tasks.named("bootJar") {
fileMode = 0400
dirMode = 0500
mainClass = 'com.example.Application'
}

View File

@@ -0,0 +1,10 @@
plugins {
id 'war'
id 'org.springframework.boot' version '{version}'
}
tasks.named("bootWar") {
fileMode = 0400
dirMode = 0500
mainClass = 'com.example.Application'
}