This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-reactive.git


The following commit(s) were added to refs/heads/main by this push:
     new 0610e6e  fix: Rename relocation prefix of Caffeine producer cache 
provider (#128)
0610e6e is described below

commit 0610e6e5cefb1bdc98630af6af7ecfe06731407c
Author: Chris Bono <[email protected]>
AuthorDate: Tue Aug 8 09:01:31 2023 -0500

    fix: Rename relocation prefix of Caffeine producer cache provider (#128)
    
    The previous relocation mistakenly was using the prefix of 
"org.springframework.pulsar.shade" when it should not be vendor specific and 
instead be "org.apache.pulsar.reactive.shade".
    
    This fixes #127.
---
 pulsar-client-reactive-producer-cache-caffeine-shaded/build.gradle | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pulsar-client-reactive-producer-cache-caffeine-shaded/build.gradle 
b/pulsar-client-reactive-producer-cache-caffeine-shaded/build.gradle
index e0c639b..20e32a8 100644
--- a/pulsar-client-reactive-producer-cache-caffeine-shaded/build.gradle
+++ b/pulsar-client-reactive-producer-cache-caffeine-shaded/build.gradle
@@ -45,9 +45,9 @@ shadowJar {
        manifest {
                inheritFrom project.tasks.jar.manifest
        }
-       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'
+       relocate 'com.github.benmanes.caffeine', 
'org.apache.pulsar.reactive.shade.com.github.benmanes.caffeine'
+       relocate 'com.google', 'org.apache.pulsar.reactive.shade.com.google'
+       relocate 'org.checkerframework', 
'org.apache.pulsar.reactive.shade.org.checkerframework'
        dependencies {
                exclude(dependency {
                        !['com.github.ben-manes.caffeine', 
'org.checkerframework', 'com.google.errorprone'].contains(it.moduleGroup)

Reply via email to