Browse Source

Merge branch '2.7.x' into 3.0.x

Closes gh-36126
pull/37018/head
Andy Wilkinson 3 years ago
parent
commit
93f8bd2170
  1. 6
      spring-boot-project/spring-boot-tools/spring-boot-cli/build.gradle
  2. 4
      spring-boot-tests/spring-boot-integration-tests/spring-boot-server-tests/spring-boot-server-tests-app/build.gradle

6
spring-boot-project/spring-boot-tools/spring-boot-cli/build.gradle

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

4
spring-boot-tests/spring-boot-integration-tests/spring-boot-server-tests/spring-boot-server-tests-app/build.gradle

@ -62,7 +62,7 @@ tasks.register("resourcesJar", Jar) { jar -> @@ -62,7 +62,7 @@ tasks.register("resourcesJar", Jar) { jar ->
rename (".*", 'nested-reserved-!#\\$%&()*+,:=?@[]-meta-inf-resource.txt')
}
}
classifier = 'resources'
archiveClassifier = 'resources'
}
dependencies {
@ -88,7 +88,7 @@ def boolean isWindows() { @@ -88,7 +88,7 @@ def boolean isWindows() {
task.dependsOn resourcesJar
task.mainClass = "com.example.ResourceHandlingApplication"
task.classpath = configurations.getByName(webServer)
task.classifier = webServer
task.archiveClassifier = webServer
task.targetJavaVersion = project.getTargetCompatibility()
}
tasks.register("${webServer}BootJar", BootJar, configurer)

Loading…
Cancel
Save