From 479960d1eb936460b97ae2f8df21c536590ff08a Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Mon, 27 Jun 2022 22:16:15 +0000
Subject: [PATCH] Add var project.build.outputTimestamp to enable reproducible builds
---
.github/workflows/update-deps.yml | 1 +
pom.xml | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml
index 6a0399b..980fc8c 100644
--- a/.github/workflows/update-deps.yml
+++ b/.github/workflows/update-deps.yml
@@ -59,6 +59,7 @@
-DremotePom='org.keycloak:keycloak-parent:${{ steps.vars.outputs.keycloakVersion }}' \
-DupdateDependencies=true -DupdatePropertyVersions=true
mvn versions:use-latest-versions -DallowMajorUpdates=false
+ mvn versions:set-property -Dproperty=project.build.outputTimestamp -DnewVersion=`date +%s`
- id: create_commit
name: Create commit
diff --git a/pom.xml b/pom.xml
index 27c35bd..9d5518d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,6 +35,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
+ <project.build.outputTimestamp>1656367890</project.build.outputTimestamp>
</properties>
<dependencies>
--
Gitblit v1.9.1