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 have just updated from Spring Boot 2.1.3 to 2.1.4. We heavily use spring-boot-maven-plugin to build executable jar. Before 2.1.4, we were able to build jar whose file name did not contain the project version with this configuration :
From 2.1.4, the generated jar always contain the version (ex : myapp.2.1.0-SNAPSHOT.jar), what breaks our CI. Before, it would always have been myapp.jar with this configuration.
I didn't see anything relevant in the changelog about this.
Thanks for feedback.
The text was updated successfully, but these errors were encountered:
@mpalourdio the finalName attribute is read-only (and therefore not advertized in the doc) as of Spring Boot 2.1.0.M1, see #12608 - It's a mystery to me why Maven would allow you to set the value anyway. This should have been done as part of the upgrade to 2.1.0 but it looks like you're all set now.
Hello,
I have just updated from Spring Boot 2.1.3 to 2.1.4. We heavily use spring-boot-maven-plugin to build executable jar. Before 2.1.4, we were able to build jar whose file name did not contain the project version with this configuration :
From 2.1.4, the generated jar always contain the version (ex : myapp.2.1.0-SNAPSHOT.jar), what breaks our CI. Before, it would always have been myapp.jar with this configuration.
I didn't see anything relevant in the changelog about this.
Thanks for feedback.
The text was updated successfully, but these errors were encountered: