From 2d6803a9767255f233fca5859807501e88b994bc Mon Sep 17 00:00:00 2001 From: Andrea Marziali Date: Fri, 24 May 2024 12:35:48 +0200 Subject: [PATCH] fix spring boot latest dep logging dependencies (#7071) --- dd-java-agent/instrumentation/spring-boot/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dd-java-agent/instrumentation/spring-boot/build.gradle b/dd-java-agent/instrumentation/spring-boot/build.gradle index 69b196fcab4..b6665d2e314 100644 --- a/dd-java-agent/instrumentation/spring-boot/build.gradle +++ b/dd-java-agent/instrumentation/spring-boot/build.gradle @@ -50,6 +50,6 @@ dependencies { boot3ForkedTestImplementation group: 'org.springframework.boot', name: 'spring-boot', version: '3.0.0' latestDepTestImplementation group: 'org.springframework.boot', name: 'spring-boot', version: '+' latestDepForkedTestImplementation group: 'org.springframework.boot', name: 'spring-boot', version: '+' - latestDepTestImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.8' // otherwise clashes with RootLogLevelConfigurator - latestDepForkedTestImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.8' + latestDepTestImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: '+' + latestDepForkedTestImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: '+' }