From a235b0656c475b96996b184b7926162c2a1c8ff8 Mon Sep 17 00:00:00 2001 From: eastargh Date: Tue, 8 Sep 2026 17:08:35 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=20=EB=B2=84=EA=B7=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index 4201874..a416223 100644 --- a/build.gradle +++ b/build.gradle @@ -239,6 +239,11 @@ configurations.all { // 일부 transitive 가 끌어오는 xml-apis:1.0.b2 (2002, DOM L2) 는 이 클래스를 포함하지 않아 // xercesImpl 가 NoClassDefFoundError 를 일으킴 → 1.4.01 로 강제 통일. force 'xml-apis:xml-apis:1.4.01' + + // logback 1.2.10 은 SLF4J 1.7 바인딩(StaticLoggerBinder)만 제공한다. + // transitive (Java-WebSocket:1.5.7 등) 가 slf4j-api 2.x 를 끌어올리면 + // SLF4J 가 provider 를 못 찾아 NOP 로거로 폴백 → 콘솔/파일 로그가 전부 사라진다. + force 'org.slf4j:slf4j-api:1.7.36' } }