This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 63c6a25718f [fix][client] Prevent embedding protobuf-java class files
in pulsar-client-admin and pulsar-client-all (#23468)
63c6a25718f is described below
commit 63c6a25718f27528ea0c7da690c479ffab17c455
Author: 萧易客 <[email protected]>
AuthorDate: Fri Oct 18 02:07:38 2024 +0800
[fix][client] Prevent embedding protobuf-java class files in
pulsar-client-admin and pulsar-client-all (#23468)
---
pulsar-client-admin-shaded/pom.xml | 2 +-
pulsar-client-all/pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pulsar-client-admin-shaded/pom.xml
b/pulsar-client-admin-shaded/pom.xml
index 7d1b00cf8da..ab42f0e2aef 100644
--- a/pulsar-client-admin-shaded/pom.xml
+++ b/pulsar-client-admin-shaded/pom.xml
@@ -119,7 +119,6 @@
<include>org.reactivestreams:reactive-streams</include>
<include>com.typesafe.netty:netty-reactive-streams</include>
<include>org.javassist:javassist</include>
- <include>com.google.protobuf:protobuf-java</include>
<include>com.google.guava:guava</include>
<include>com.google.code.gson:gson</include>
<include>com.google.re2j:re2j</include>
@@ -153,6 +152,7 @@
</includes>
<excludes>
<exclude>com.fasterxml.jackson.core:jackson-annotations</exclude>
+ <exclude>com.google.protobuf:protobuf-java</exclude>
</excludes>
</artifactSet>
<filters>
diff --git a/pulsar-client-all/pom.xml b/pulsar-client-all/pom.xml
index 2cad7bf7fb5..e26f6eeac57 100644
--- a/pulsar-client-all/pom.xml
+++ b/pulsar-client-all/pom.xml
@@ -159,7 +159,6 @@
<include>org.reactivestreams:reactive-streams</include>
<include>com.typesafe.netty:netty-reactive-streams</include>
<include>org.javassist:javassist</include>
- <include>com.google.protobuf:protobuf-java</include>
<include>com.google.guava:*</include>
<include>org.checkerframework:*</include>
<include>com.google.code.findbugs:*</include>
@@ -210,6 +209,7 @@
</includes>
<excludes>
<exclude>com.fasterxml.jackson.core:jackson-annotations</exclude>
+ <exclude>com.google.protobuf:protobuf-java</exclude>
</excludes>
</artifactSet>
<filters>