chore(logging): add slf4j and JUL bridge deps

This commit is contained in:
Zhongheng Liu 2026-01-08 16:06:54 +01:00
commit 0cd1a00c98
Signed by: steven
GPG key ID: F69B980899C1C09D

View file

@ -118,6 +118,18 @@
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>2.0.17</version> <!-- use matching version for your SLF4J -->
</dependency>
<!-- Logback Classic logger implementation -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.20</version> <!-- or latest compatible version -->
</dependency>
</dependencies> </dependencies>
<build> <build>