Commit 0083a59f authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #20052 from scheerer

* pr/20052:
  Fix variable reference in maven-shade-plugin configuration

Closes gh-20052
parents 20204602 7f23b9dc
...@@ -191,7 +191,7 @@ publishing.publications.withType(MavenPublication) { ...@@ -191,7 +191,7 @@ publishing.publications.withType(MavenPublication) {
dependency { dependency {
delegate.groupId('org.springframework.boot') delegate.groupId('org.springframework.boot')
delegate.artifactId('spring-boot-maven-plugin') delegate.artifactId('spring-boot-maven-plugin')
delegate.version('${revision}') delegate.version('${project.version}')
} }
} }
executions { executions {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment