Merge pull request #20052 from scheerer
* pr/20052: Fix variable reference in maven-shade-plugin configuration Closes gh-20052
This commit is contained in:
commit
0083a59fe2
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue