Merge branch '2.6.x' into 2.7.x

Closes gh-29686
This commit is contained in:
Andy Wilkinson 2022-02-09 11:32:43 +00:00
commit 1e16c2f229
2 changed files with 4 additions and 4 deletions

View File

@ -5,11 +5,11 @@ plugins {
// tag::classifiers[] // tag::classifiers[]
bootJar { bootJar {
classifier = 'boot' archiveClassifier = 'boot'
} }
jar { jar {
classifier = '' archiveClassifier = ''
} }
// end::classifiers[] // end::classifiers[]

View File

@ -7,11 +7,11 @@ plugins {
// tag::classifiers[] // tag::classifiers[]
tasks.getByName<BootJar>("bootJar") { tasks.getByName<BootJar>("bootJar") {
classifier = "boot" archiveClassifier.set("boot")
} }
tasks.getByName<Jar>("jar") { tasks.getByName<Jar>("jar") {
classifier = "" archiveClassifier.set("")
} }
// end::classifiers[] // end::classifiers[]