diff options
author | Ravi Pendurty <ravi.pendurty@highstreet-technologies.com> | 2023-10-07 13:15:24 +0530 |
---|---|---|
committer | Ravi Pendurty <ravi.pendurty@highstreet-technologies.com> | 2023-10-07 13:15:24 +0530 |
commit | 9d493620847865c73d12e73df5a25d5b70d298f8 (patch) | |
tree | 761ba1f16dea307cb54d55019c78dcd3ec7fbc62 | |
parent | 1dd9578b9109223a957fd1bfd1ded4f00d072614 (diff) |
Include kafka client dependency
Include kafka client dependency
Issue-ID: CCSDK-3936
Change-Id: Ic3498ad22750af97344ee8dbae004bf7a00b6502
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
-rwxr-xr-x | dependencies/pom.xml | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/dependencies/pom.xml b/dependencies/pom.xml index 3b18df4a..1f203990 100755 --- a/dependencies/pom.xml +++ b/dependencies/pom.xml @@ -95,7 +95,7 @@ <groupId>javax</groupId> <artifactId>javaee-api</artifactId> </dependency> - <dependency> + <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.3.1</version> @@ -136,10 +136,10 @@ <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> </dependency> - <dependency> - <groupId>org.glassfish.jaxb</groupId> - <artifactId>jaxb-runtime</artifactId> - </dependency> + <dependency> + <groupId>org.glassfish.jaxb</groupId> + <artifactId>jaxb-runtime</artifactId> + </dependency> <dependency> <groupId>org.glassfish.jersey.bundles.repackaged</groupId> <artifactId>jersey-guava</artifactId> @@ -160,11 +160,11 @@ <groupId>org.glassfish.jersey.security</groupId> <artifactId>oauth1-client</artifactId> </dependency> - <dependency> - <groupId>org.json</groupId> - <artifactId>json</artifactId> - <version>20201115</version> - </dependency> + <dependency> + <groupId>org.json</groupId> + <artifactId>json</artifactId> + <version>20201115</version> + </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> @@ -218,6 +218,12 @@ <artifactId>error_prone_annotations</artifactId> <version>2.18.0</version> </dependency> + <!-- Kafka Dependency --> + <dependency> + <groupId>org.apache.kafka</groupId> + <artifactId>kafka-clients</artifactId> + <version>3.0.0</version> + </dependency> </dependencies> <build> |