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 --- pom.xml | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 1e31d7c..9d5518d 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ <groupId>org.keycloak</groupId> <artifactId>keycloak-protocol-cas</artifactId> - <version>13.0.1</version> + <version>18.0.2</version> <name>Keycloak CAS Protocol</name> <description /> @@ -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> @@ -97,13 +98,13 @@ <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-core</artifactId> - <version>2.8.2</version> + <version>2.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> - <version>2.5.0</version> + <version>2.7.0</version> <scope>test</scope> </dependency> </dependencies> @@ -112,7 +113,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.8.0</version> + <version>3.10.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> @@ -124,7 +125,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> - <version>3.1.1</version> + <version>3.2.2</version> <configuration> <archive> <manifestEntries> -- Gitblit v1.9.1