From 7cedb1df126bc947865b69c52e12ad809b65720b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 29 Oct 2025 22:24:20 +0000 Subject: [PATCH 1/2] Initial plan From 117a819435600735e3c7b72383adfc98d7981a7d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 29 Oct 2025 22:34:49 +0000 Subject: [PATCH 2/2] Upgrade log4j to version 2.25.2 Co-authored-by: visweshwar <7268985+visweshwar@users.noreply.github.com> --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index cef67a8..d067a5b 100644 --- a/build.gradle +++ b/build.gradle @@ -29,6 +29,7 @@ ext{ springVersion = '5.2.1.RELEASE' springSecurityVersion = '2.4.0.RELEASE' thymeleafExtras = "3.0.4.RELEASE" + log4jVersion = "2.25.2" } repositories { mavenCentral() @@ -42,6 +43,10 @@ dependencies { compile group: 'org.springframework.security', name: 'spring-security-oauth2-jose', version: "$springVersion" compile group: 'org.springframework.security', name: 'spring-security-config', version: "$springVersion" + // Override log4j version to latest stable release + compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: "${log4jVersion}" + compile group: 'org.apache.logging.log4j', name: 'log4j-to-slf4j', version: "${log4jVersion}" + testCompile "net.sourceforge.htmlunit:htmlunit:2.37.0" testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion" }