Creating reproducible artifacts with Maven View article history Edit article

Published: , Updated:
Talks about: <a class="post-tag post-tag-maven" href="/tags/maven">maven</a>, and <a class="post-tag post-tag-reproducible" href="/tags/reproducible">reproducible</a>

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>