Creating reproducible artifacts with Maven

Published:
, Updated:
Talks about:
maven, and reproducible
To create reproducible builds with Maven projects, it’s enough to specify the project.build.outputTimestamp
property like this:
<properties>
<project.build.outputTimestamp>2020</project.build.outputTimestamp>
</properties>