Answer by skay for How to access maven.build.timestamp for resource filtering
Adding Maven properties at the pom project level doesn't take into account correct local Timezone, so timestamp may appear wrong...
View ArticleAnswer by rogerdpack for How to access maven.build.timestamp for resource...
I can confirm as of Maven 3.x {maven.build.timestamp} is "working" now. They work arounded the problem, apparently. No additional properties workaround needed anymore.However, be careful your...
View ArticleAnswer by Bob Rivers for How to access maven.build.timestamp for resource...
In order to enrich the Stackoverflow content for others, that like me, found this post as a way to solve the "problem" of ${maven.build.timestamp}. This is not a maven bug, but an expected behavior of...
View ArticleAnswer by kostja for How to access maven.build.timestamp for resource filtering
I have discovered this article, explaining that due to a bug in maven, the build timestamp does not get propagated to the filtering. The workaround is to wrap the timestamp in another...
View ArticleHow to access maven.build.timestamp for resource filtering
I am using maven 3.0.4 and would like to make the build timestamp accessible to my application. For this, I'm putting a placeholder in a .properties file and let maven filter on build. While this is...
View Article