You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Spring Boot 2.1.4.RELEASE, it comes with spring-boot-maven-plugin of the same version, however, this version does not resolve ${git.commit.time}.${git.commit.id.abbrev}.
When I change spring-boot-maven-plugin back to 2.1.3.RELEASE, it works.
By reading the comments I currently don't think it's a problem with this plugin. In fact based on this spring-projects/spring-boot#16456 (comment) it seems that build/finalName should be immutable and it just happens to work.
In honesty I'm not sure if I can do anything to address this issue. For me it appears that spring-boot needs to apply a fix (again based on the discussion in the issue).
I'm using Spring Boot 2.1.4.RELEASE, it comes with spring-boot-maven-plugin of the same version, however, this version does not resolve ${git.commit.time}.${git.commit.id.abbrev}.
When I change spring-boot-maven-plugin back to 2.1.3.RELEASE, it works.
Using spring-boot-maven-plugin 2.1.3, it produces
demo-20190510-223456.a922def.jar
Using spring-boot-maven-plugin 2.1.4, it produces
demo-${git.commit.time}.${git.commit.id.abbrev}.jar
Please see uploaded simple project to reproduce this.
demo.zip
The text was updated successfully, but these errors were encountered: