From 51450d8c1e08f61015592338917d99be15abcad2 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Thu, 17 Jul 2025 16:19:54 -0500 Subject: [PATCH] Stop shading checker-qual in caffeine cache provider This commit adjusts the shading in the spring-pulsar-cache-provider-caffeine module to not include the `org.checkerframework:checker-qual` in the shaded jar. Signed-off-by: Chris Bono --- .../spring-pulsar-cache-provider-caffeine.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-pulsar-cache-provider-caffeine/spring-pulsar-cache-provider-caffeine.gradle b/spring-pulsar-cache-provider-caffeine/spring-pulsar-cache-provider-caffeine.gradle index 7457aa8ec..328e92b55 100644 --- a/spring-pulsar-cache-provider-caffeine/spring-pulsar-cache-provider-caffeine.gradle +++ b/spring-pulsar-cache-provider-caffeine/spring-pulsar-cache-provider-caffeine.gradle @@ -23,10 +23,9 @@ shadowJar { } relocate 'com.github.benmanes.caffeine', 'org.springframework.pulsar.shade.com.github.benmanes.caffeine' relocate 'com.google', 'org.springframework.pulsar.shade.com.google' - relocate 'org.checkerframework', 'org.springframework.pulsar.shade.org.checkerframework' dependencies { exclude(dependency { - !['com.github.ben-manes.caffeine', 'org.checkerframework', 'com.google.errorprone'].contains(it.moduleGroup) + !['com.github.ben-manes.caffeine', 'com.google.errorprone'].contains(it.moduleGroup) }) } }