You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2019/04/01 16:35:06 UTC

[pulsar] branch master updated: Make dependency from client side auth plugins to pulsar-client-original optional (#3957)

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

mmerli 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 b38cf57  Make dependency from client side auth plugins to pulsar-client-original optional (#3957)
b38cf57 is described below

commit b38cf57ded361459b09c7c4d49e639d3d1038088
Author: massakam <ma...@yahoo-corp.jp>
AuthorDate: Tue Apr 2 01:35:00 2019 +0900

    Make dependency from client side auth plugins to pulsar-client-original optional (#3957)
---
 pulsar-client-auth-athenz/pom.xml | 11 +++++++++++
 pulsar-client-auth-sasl/pom.xml   | 16 ++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/pulsar-client-auth-athenz/pom.xml b/pulsar-client-auth-athenz/pom.xml
index 6235184..5cc8318 100644
--- a/pulsar-client-auth-athenz/pom.xml
+++ b/pulsar-client-auth-athenz/pom.xml
@@ -39,6 +39,7 @@
       <groupId>${project.groupId}</groupId>
       <artifactId>pulsar-client-original</artifactId>
       <version>${project.parent.version}</version>
+      <optional>true</optional>
     </dependency>
 
     <dependency>
@@ -46,5 +47,15 @@
       <artifactId>athenz-zts-java-client</artifactId>
     </dependency>
 
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+    </dependency>
+
   </dependencies>
 </project>
diff --git a/pulsar-client-auth-sasl/pom.xml b/pulsar-client-auth-sasl/pom.xml
index 27288ac..903fe3c 100644
--- a/pulsar-client-auth-sasl/pom.xml
+++ b/pulsar-client-auth-sasl/pom.xml
@@ -39,6 +39,22 @@
       <groupId>${project.groupId}</groupId>
       <artifactId>pulsar-client-original</artifactId>
       <version>${project.parent.version}</version>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.projectlombok</groupId>
+      <artifactId>lombok</artifactId>
     </dependency>
 
   </dependencies>