This is an automated email from the ASF dual-hosted git repository.
weisong44 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git
The following commit(s) were added to refs/heads/master by this push:
new 55e9f04 SAMZA-2188: Remove dependency to
com.couchbase.client:encryption
55e9f04 is described below
commit 55e9f045f894f32a28e1bbaff85989d2a22cd81f
Author: Wei Song <[email protected]>
AuthorDate: Thu May 9 11:06:30 2019 -0700
SAMZA-2188: Remove dependency to com.couchbase.client:encryption
com.couchbase.client:encryption is a module that is needed on client side
when client side encryption is enabled. It is unfortunately a commercial lib
which is not free. Therefore we are excluding it by default, end user could
manually include it when required.
More info can be found here
https://mvnrepository.com/artifact/com.couchbase.client/encryption
Author: Wei Song <[email protected]>
Reviewers: Srini Pururu <[email protected]>
Closes #1024 from weisong44/SAMZA-2188
---
build.gradle | 1 -
gradle/dependency-versions.gradle | 1 -
2 files changed, 2 deletions(-)
diff --git a/build.gradle b/build.gradle
index 0b614e9..60ebe00 100644
--- a/build.gradle
+++ b/build.gradle
@@ -716,7 +716,6 @@ project(":samza-kv-couchbase_$scalaSuffix") {
compile project(":samza-kv_$scalaSuffix")
compile "org.scala-lang:scala-library:$scalaVersion"
compile "com.couchbase.client:java-client:$couchbaseClientVersion"
- compile "com.couchbase.client:encryption:$couchbaseEncryptionVersion"
testCompile "junit:junit:$junitVersion"
testCompile "org.mockito:mockito-core:$mockitoVersion"
testCompile "org.powermock:powermock-api-mockito:$powerMockVersion"
diff --git a/gradle/dependency-versions.gradle
b/gradle/dependency-versions.gradle
index 5a43764..9279051 100644
--- a/gradle/dependency-versions.gradle
+++ b/gradle/dependency-versions.gradle
@@ -52,5 +52,4 @@
jnaVersion = "4.5.1"
couchbaseClientVersion = "2.7.2"
couchbaseMockVersion = "1.5.22"
- couchbaseEncryptionVersion = "1.0.0"
}