I am fairly new to java using Spring boot and maven. I was assigned a task to get the revision number and timestamp for the current revision from the project and put them into an app.properties file . Most of the demonstrations I have found displayed the templates as such, version=${version} revision=${buildNumber} date=${timestamp}. I tried these all in a seperate application and they worked properly, however it the release notes for spring boot 1.3 state that the templates now have to be written such as, @version@.
Version works properly using that information, however the build number and timestamp do not print out anything except for the template that should be replaced with that information. I have googled and checked stack overflow but i am not finding any way to get these two things working properly. I have also tried to pull the information from SVN but it is also just returning the template on commit