Application version does not show up in Spring Boot banner.txt

Ok, the version gets printed if i build the project and run it via java -jar. But if i start the application within my IDE (IntelliJ IDEA) the version will not be printed. According to the Spring Boot documentation on Customizing the Banner, the value of ${application.version} is taken from the jar manifest. The version … Read more

tech