From aa047986743bea66b6d464d0770005c8ac1847c7 Mon Sep 17 00:00:00 2001 From: Russell Scheerer Date: Thu, 6 Feb 2020 10:14:47 -0500 Subject: [PATCH] Fixing incorrect variable reference after Maven->Gradle migration --- .../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 ec051147f579..92a03ed92f82 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 {