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

eolivelli 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 dc7c121958c [cleanup] CLI: fix pulsar-websocket dependency importing 
only needed jars (#16370)
dc7c121958c is described below

commit dc7c121958cd68534e3bc5b611fc77f676630e3d
Author: Nicolò Boschi <[email protected]>
AuthorDate: Mon Jul 11 11:34:43 2022 +0200

    [cleanup] CLI: fix pulsar-websocket dependency importing only needed jars 
(#16370)
---
 pulsar-client-tools/pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/pulsar-client-tools/pom.xml b/pulsar-client-tools/pom.xml
index b05cb517b81..23b191d8ee9 100644
--- a/pulsar-client-tools/pom.xml
+++ b/pulsar-client-tools/pom.xml
@@ -78,6 +78,21 @@
       <groupId>${project.groupId}</groupId>
       <artifactId>pulsar-websocket</artifactId>
       <version>${project.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>*</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.websocket</groupId>
+      <artifactId>javax-websocket-client-impl</artifactId>
+      <version>${jetty.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>io.swagger</groupId>
+      <artifactId>swagger-core</artifactId>
     </dependency>
 
     <!-- functions related dependencies (begin) -->

Reply via email to