From 7f23b9dc16b340b8852fdac44ecc6ad5418465d1 Mon Sep 17 00:00:00 2001 From: Russell Scheerer Date: Thu, 6 Feb 2020 10:14:47 -0500 Subject: [PATCH] Fix variable reference in maven-shade-plugin configuration See gh-20052 --- .../spring-boot-starter-parent/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle b/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle index ec051147f57..92a03ed92f8 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle @@ -191,7 +191,7 @@ publishing.publications.withType(MavenPublication) { dependency { delegate.groupId('org.springframework.boot') delegate.artifactId('spring-boot-maven-plugin') - delegate.version('${revision}') + delegate.version('${project.version}') } } executions {