From b458d427582f140c011480cb70c5642ff91bfc6a Mon Sep 17 00:00:00 2001 From: Harisiva-r-g Date: Wed, 19 Feb 2025 16:20:46 +0000 Subject: [PATCH] fix(dependencies): added missing dependencies in pom for log4j This commit adds two missing dependencies to the pom.xml file to fix the "StatusLogger Log4j2 could not find a logging implementation" error. The dependencies added are log4j-core and log4j-api, with version 3.0.0-beta2. This latest version was obtained from the official maven repository: https://mvnrepository.com/artifact/org.apache.logging.log4j. --- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pom.xml b/pom.xml index 03fd5dc21..ea8673995 100644 --- a/pom.xml +++ b/pom.xml @@ -127,6 +127,16 @@ opencsv 5.9 + + org.apache.logging.log4j + log4j-api + 3.0.0-beta2 + + + org.apache.logging.log4j + log4j-core + 3.0.0-beta2 +