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

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new d5536cc  Removed GPL deps on gnu crypto from aerospike connector 
(#2173)
d5536cc is described below

commit d5536cc38a5811c8e02d580165b8e8d0861a8b4d
Author: Matteo Merli <[email protected]>
AuthorDate: Tue Jul 17 10:41:29 2018 -0700

    Removed GPL deps on gnu crypto from aerospike connector (#2173)
    
    ### Motivation
    
    There's an optional dependency on gnu-crypto for aerospike connector. We 
need to remove it to avoid license issue at release.
---
 pulsar-io/aerospike/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pulsar-io/aerospike/pom.xml b/pulsar-io/aerospike/pom.xml
index 1a2d546..5f678be 100644
--- a/pulsar-io/aerospike/pom.xml
+++ b/pulsar-io/aerospike/pom.xml
@@ -52,6 +52,12 @@
       <groupId>com.aerospike</groupId>
       <artifactId>aerospike-client</artifactId>
       <version>${aerospike-client.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.gnu</groupId>
+          <artifactId>gnu-crypto</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
   </dependencies>

Reply via email to