Skip to content

Commit b45b9eb

Browse files
committed
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 <[email protected]>
1 parent e87cea2 commit b45b9eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-pulsar-cache-provider-caffeine/spring-pulsar-cache-provider-caffeine.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@ shadowJar {
2323
}
2424
relocate 'com.github.benmanes.caffeine', 'org.springframework.pulsar.shade.com.github.benmanes.caffeine'
2525
relocate 'com.google', 'org.springframework.pulsar.shade.com.google'
26-
relocate 'org.checkerframework', 'org.springframework.pulsar.shade.org.checkerframework'
2726
dependencies {
2827
exclude(dependency {
29-
!['com.github.ben-manes.caffeine', 'org.checkerframework', 'com.google.errorprone'].contains(it.moduleGroup)
28+
!['com.github.ben-manes.caffeine', 'com.google.errorprone'].contains(it.moduleGroup)
3029
})
3130
}
3231
}

0 commit comments

Comments
 (0)