From c4d72f0674604adc913174059b734ce04907907b Mon Sep 17 00:00:00 2001 From: nscuro Date: Fri, 14 Aug 2026 14:10:34 +0200 Subject: [PATCH] Fix missing slf4j implementation in tests Some dependencies use the slf4j API for logging, but no slf4j implementation was on the classpath, leading to repeated warnings in test logs. Signed-off-by: nscuro --- pom.xml | 7 +++++++ src/test/java/org/cyclonedx/parsers/JsonParserTest.java | 1 - src/test/resources/simplelogger.properties | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/test/resources/simplelogger.properties diff --git a/pom.xml b/pom.xml index 911948cee..1eedbd284 100644 --- a/pom.xml +++ b/pom.xml @@ -179,6 +179,13 @@ test + + org.slf4j + slf4j-simple + 2.0.18 + test + +