Skip to content

Commit

Permalink
Merge branch '2.5.x' into 2.6.x
Browse files Browse the repository at this point in the history
Closes gh-29685
  • Loading branch information
wilkinsona committed Feb 9, 2022
2 parents 358cdb3 + 3a5bf49 commit c0664ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -5,11 +5,11 @@ plugins {

// tag::classifiers[]
bootJar {
classifier = 'boot'
archiveClassifier = 'boot'
}

jar {
classifier = ''
archiveClassifier = ''
}
// end::classifiers[]

Expand Down
Expand Up @@ -7,11 +7,11 @@ plugins {

// tag::classifiers[]
tasks.getByName<BootJar>("bootJar") {
classifier = "boot"
archiveClassifier.set("boot")
}

tasks.getByName<Jar>("jar") {
classifier = ""
archiveClassifier.set("")
}
// end::classifiers[]

Expand Down

0 comments on commit c0664ef

Please sign in to comment.