This is an automated email from the ASF dual-hosted git repository.
madhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git
The following commit(s) were added to refs/heads/master by this push:
new 4f4184d RANGER-2426: Using kafka-clients artifact only instead of
kafka core in ranger-plugins-audit, ranger-schema-registry-plugin and
ranger-tagsync modules
4f4184d is described below
commit 4f4184d6183ef52c07f96b1116bf21eae0c32b72
Author: Andras Katona <[email protected]>
AuthorDate: Thu Dec 10 14:00:52 2020 +0100
RANGER-2426: Using kafka-clients artifact only instead of kafka core in
ranger-plugins-audit, ranger-schema-registry-plugin and ranger-tagsync modules
Signed-off-by: Madhan Neethiraj <[email protected]>
---
agents-audit/pom.xml | 6 +-----
plugin-schema-registry/pom.xml | 6 +-----
tagsync/pom.xml | 5 -----
3 files changed, 2 insertions(+), 15 deletions(-)
diff --git a/agents-audit/pom.xml b/agents-audit/pom.xml
index a1ec2f2..f322210 100644
--- a/agents-audit/pom.xml
+++ b/agents-audit/pom.xml
@@ -86,14 +86,10 @@
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
- <artifactId>kafka_${scala.binary.version}</artifactId>
+ <artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
<exclusions>
<exclusion>
- <groupId>net.jpountz.lz4</groupId>
- <artifactId>lz4</artifactId>
- </exclusion>
- <exclusion>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
</exclusion>
diff --git a/plugin-schema-registry/pom.xml b/plugin-schema-registry/pom.xml
index b89b5d8..c85aa4d 100644
--- a/plugin-schema-registry/pom.xml
+++ b/plugin-schema-registry/pom.xml
@@ -123,14 +123,10 @@
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
- <artifactId>kafka_${scala.binary.version}</artifactId>
+ <artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
<exclusions>
<exclusion>
- <groupId>org.apache.zookeeper</groupId>
- <artifactId>zookeeper</artifactId>
- </exclusion>
- <exclusion>
<groupId>log4j</groupId>
<artifactId>*</artifactId>
</exclusion>
diff --git a/tagsync/pom.xml b/tagsync/pom.xml
index 8c4ecb2..8b453f4 100644
--- a/tagsync/pom.xml
+++ b/tagsync/pom.xml
@@ -215,11 +215,6 @@
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
- <artifactId>kafka_${scala.binary.version}</artifactId>
- <version>${kafka.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
</dependency>