Skip to content

Commit

Permalink
Make Maven build reproducible
Browse files Browse the repository at this point in the history
  • Loading branch information
fcrespel committed Sep 4, 2024
1 parent 3fdf3d9 commit 5d1922f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<!-- Project properties -->
<java.version>17</java.version>
<start-class>me.crespel.karaplan.KaraplanApplication</start-class>
<project.build.outputTimestamp>${git.commit.time}</project.build.outputTimestamp>
<nodejs.src.directory>${basedir}/src/main/nodejs</nodejs.src.directory>
<nodejs.build.directory>${project.build.directory}/nodejs</nodejs.build.directory>
<docker.src.directory>${basedir}/src/main/docker</docker.src.directory>
Expand Down Expand Up @@ -262,6 +263,11 @@
<artifactId>git-commit-id-maven-plugin</artifactId>
<configuration>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<dateFormatTimeZone>UTC</dateFormatTimeZone>
<excludeProperties>
<excludeProperty>git.build.*</excludeProperty>
<excludeProperty>git.commit.user.*</excludeProperty>
</excludeProperties>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 5d1922f

Please sign in to comment.