Browse Source

Merge pull request #20143 from scheerer

* pr/20143:
  Fix Spring Boot version reference in spring-boot-starter-parent

Closes gh-20143
pull/20157/head
Stephane Nicoll 6 years ago
parent
commit
90f7a3fd32
  1. 2
      spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle

2
spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle

@ -191,7 +191,7 @@ publishing.publications.withType(MavenPublication) { @@ -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 {

Loading…
Cancel
Save