From d61029a37aaba0a66c23631bb587311a74da1284 Mon Sep 17 00:00:00 2001 From: Russell Scheerer Date: Wed, 12 Feb 2020 09:07:15 -0500 Subject: [PATCH] Fix Spring Boot version reference in spring-boot-starter-parent See gh-20143 --- .../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 92a03ed92f8..5584dc1df99 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('${project.version}') + delegate.version("${project.version}") } } executions {