Skip to content

Commit

Permalink
Ensure build reproducibility
Browse files Browse the repository at this point in the history
More information:
* [Configuring for Reproducible Builds - Apache Maven Project](https://maven.apache.org/guides/mini/guide-reproducible-builds.html)
  • Loading branch information
jycr committed Jul 21, 2023
1 parent 2930d62 commit a7695a0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
-->
<revision>develop-SNAPSHOT</revision>

<!-- Helps ensure build reproducibility (cf. https://maven.apache.org/guides/mini/guide-reproducible-builds.html) -->
<!--suppress UnresolvedMavenProperty -->
<project.build.outputTimestamp>${git.commit.timestamp.datetime}</project.build.outputTimestamp>

<java.version>11</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
Expand Down

0 comments on commit a7695a0

Please sign in to comment.