From 5e2446f438b35fe962beeca4473e821f0d899d5f Mon Sep 17 00:00:00 2001 From: fabian4 Date: Wed, 24 Apr 2024 14:25:28 +0800 Subject: [PATCH] fix: exclude spring-boot-starter-logging --- eventmesh-examples/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eventmesh-examples/build.gradle b/eventmesh-examples/build.gradle index 212b567799..3d7d269727 100644 --- a/eventmesh-examples/build.gradle +++ b/eventmesh-examples/build.gradle @@ -25,7 +25,9 @@ dependencies { implementation('org.springframework.boot:spring-boot-starter') { exclude module: 'spring-boot-starter-logging' } - implementation 'org.springframework.boot:spring-boot-starter-web' + implementation('org.springframework.boot:spring-boot-starter-web') { + exclude module: 'spring-boot-starter-logging' + } implementation 'io.netty:netty-all' implementation "io.cloudevents:cloudevents-core" implementation "io.cloudevents:cloudevents-json-jackson"