Fix descriptions of distribution tasks

Without the .get(), the substitution names the property rather than interpolating its value.
This commit is contained in:
Ian Young
2021-12-23 21:24:51 +00:00
committed by rstoyanchev
parent 7f5df351ff
commit c8c9df6d54

View File

@@ -267,7 +267,7 @@ configure(rootProject) {
group = "Distribution"
archiveBaseName = "spring-webflow"
archiveClassifier = "docs"
description = "Builds -${archiveClassifier} archive containing api and reference " +
description = "Builds -${archiveClassifier.get()} archive containing api and reference " +
"for deployment at static.springframework.org/spring-webflow/docs."
from (api) {
@@ -292,7 +292,7 @@ configure(rootProject) {
group = "Distribution"
archiveBaseName = "spring-webflow"
archiveClassifier = "schema"
description = "Builds -${archiveClassifier} archive containing all " +
description = "Builds -${archiveClassifier.get()} archive containing all " +
"XSDs for deployment at static.springframework.org/schema."
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
@@ -330,7 +330,7 @@ configure(rootProject) {
group = "Distribution"
archiveBaseName = "spring-webflow"
archiveClassifier = "dist"
description = "Builds -${archiveClassifier} archive, containing all jars and docs, " +
description = "Builds -${archiveClassifier.get()} archive, containing all jars and docs, " +
"suitable for community download page."
def baseDir = "${archiveBaseName}-${project.version}"