Can I use a higher version of the spring-boot-maven-plugin to package the lower version of the spring-boot applications ?

What are the benefits of using a higher version of the spring-boot-maven-plugin ?

Comment From: wilkinsona

No. You should not mix versions of Spring Boot modules. The version of the plugin controls, among other things, the version of the launcher code that's added to a fat jar.

If you have any further questions, please follow up on Stack Overflow or Gitter. As mentioned in the guidelines for contributing, we prefer to use GitHub issues only for bugs and enhancements.

Comment From: wangliang181230

Thank you for your answer.