Merge branch '3.0.x' into 3.1.x

Closes gh-36127
This commit is contained in:
Andy Wilkinson
2023-06-30 08:26:12 +01:00
2 changed files with 5 additions and 5 deletions

View File

@@ -49,7 +49,7 @@ dependencies {
task fullJar(type: Jar) {
dependsOn configurations.loader
classifier = "full"
archiveClassifier = "full"
entryCompression = "stored"
from(configurations.runtimeClasspath) {
into "BOOT-INF/lib"
@@ -73,7 +73,7 @@ task fullJar(type: Jar) {
}
def configureArchive(archive) {
archive.classifier = "bin"
archive.archiveClassifier = "bin"
archive.into "spring-${project.version}"
archive.from(fullJar) {
rename {
@@ -91,7 +91,7 @@ def configureArchive(archive) {
}
task zip(type: Zip) {
classifier = "bin"
archiveClassifier = "bin"
configureArchive it
}