From 4e58778c81cd7d43bd5ffc5615eb84313a747946 Mon Sep 17 00:00:00 2001 From: Stefan Date: Wed, 31 Dec 2025 12:28:19 +0100 Subject: [PATCH 1/4] Update project dependencies --- pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 0526e83..15dd495 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ org.pwss integrity_hash jar - 1.2 + 1.3 A GUI application for file integrity checking @@ -71,7 +71,7 @@ ch.qos.logback logback-classic - 1.5.21 + 1.5.23 @@ -94,7 +94,7 @@ com.formdev flatlaf - 3.6.2 + 3.7 @@ -106,7 +106,7 @@ org.codehaus.mojo exec-maven-plugin - 3.6.2 + 3.6.3 ${project.mainClass} @@ -129,7 +129,7 @@ org.apache.maven.plugins maven-assembly-plugin - 3.7.1 + 3.8.0 From cf7fbe04e64ac96cffce8ef150ceece332c18b91 Mon Sep 17 00:00:00 2001 From: Stefan <130162586+lilstiffy@users.noreply.github.com> Date: Thu, 1 Jan 2026 17:34:50 +0100 Subject: [PATCH 2/4] Update pom.xml Co-authored-by: Peter Westin <83552499+pwgit-create@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 15dd495..e145bdf 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ org.pwss integrity_hash jar - 1.3 + 1.2.1 A GUI application for file integrity checking From 3dc4cb13459731f31a92bcb6c8a8eed018fb8ee0 Mon Sep 17 00:00:00 2001 From: Stefan <130162586+lilstiffy@users.noreply.github.com> Date: Thu, 1 Jan 2026 17:35:16 +0100 Subject: [PATCH 3/4] Update pom.xml Co-authored-by: Peter Westin <83552499+pwgit-create@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e145bdf..4065e28 100644 --- a/pom.xml +++ b/pom.xml @@ -126,7 +126,7 @@ - + org.apache.maven.plugins maven-assembly-plugin 3.8.0 From 65ab82d163030ba932373d6a9dd99482f2df4734 Mon Sep 17 00:00:00 2001 From: Stefan Date: Thu, 1 Jan 2026 22:23:54 +0100 Subject: [PATCH 4/4] Updated start.ps1 script Signed-off-by: Stefan --- start.ps1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/start.ps1 b/start.ps1 index e3b6b71..cba9d1b 100644 --- a/start.ps1 +++ b/start.ps1 @@ -8,14 +8,14 @@ if (-not (Test-Path -Path "..\artifacts")) { if ($null -eq $portInUse) { Write-Host "Nothing is running on port 15400. Starting the process..." - java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.8.1.jar" & + java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.8.3.jar" & Write-Host "File-Integrity-Scanner started." - cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts - java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar + cp .\target\integrity_hash-1.2.1-jar-with-dependencies.jar ..\artifacts + java -jar ..\artifacts\integrity_hash-1.2.1-jar-with-dependencies.jar exit } else { Write-Host "File-Integrity-Scanner is already running on port 15400." - cp .\target\integrity_hash-1.2-jar-with-dependencies.jar ..\artifacts - java -jar ..\artifacts\integrity_hash-1.2-jar-with-dependencies.jar + cp .\target\integrity_hash-1.2.1-jar-with-dependencies.jar ..\artifacts + java -jar ..\artifacts\integrity_hash-1.2.1-jar-with-dependencies.jar exit }