From bcc904cc1cf1aeac5de2800f223a61e3ae28f6ae Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 10 Aug 2023 14:49:11 +0200 Subject: [PATCH] Prohibit upgrades to Couchbase Client 3.4.9 Closes gh-36885 --- spring-boot-project/spring-boot-dependencies/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index d395198d26..ce99c30f69 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -174,6 +174,10 @@ bom { } } library("Couchbase Client", "3.4.7") { + prohibit { + versionRange "3.4.9" + because "it contains unshaded io.opentelemetry classes that break our Otel integration" + } group("com.couchbase.client") { modules = [ "java-client"