From c8c9df6d5456fdd7aafb0517cd32c7be12d2a896 Mon Sep 17 00:00:00 2001 From: Ian Young Date: Thu, 23 Dec 2021 21:24:51 +0000 Subject: [PATCH] Fix descriptions of distribution tasks Without the .get(), the substitution names the property rather than interpolating its value. --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 88ebb1c2..db15ca07 100644 --- a/build.gradle +++ b/build.gradle @@ -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}"