Created
September 24, 2024 12:41
-
-
Save ram-pi/494f1c4ff554f09aecf9b14fd45eab0a to your computer and use it in GitHub Desktop.
Kafka Client - pom.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns="http://maven.apache.org/POM/4.0.0" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.github.rampi</groupId> | |
<artifactId>kafka-client-example</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<properties> | |
<maven.compiler.source>22</maven.compiler.source> | |
<maven.compiler.target>22</maven.compiler.target> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<kafka.version>3.7.0</kafka.version> | |
<confluent.version>7.7.0</confluent.version> | |
<kafka-schema-registry-maven-plugin.version>7.7.0</kafka-schema-registry-maven-plugin.version> | |
<avro.version>1.11.3</avro.version> | |
<slf4j.version>1.7.30</slf4j.version> | |
<logback.version>1.2.3</logback.version> | |
<lombok.version>1.18.34</lombok.version> | |
<jackson.version>2.14.2</jackson.version> | |
</properties> | |
<repositories> | |
<repository> | |
<id>confluent</id> | |
<url>https://packages.confluent.io/maven/</url> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<id>central</id> | |
<name>Central Repository</name> | |
<url>https://repo1.maven.org/maven2/</url> | |
</pluginRepository> | |
<pluginRepository> | |
<id>confluent</id> | |
<name>Confluent</name> | |
<url>https://packages.confluent.io/maven/</url> | |
</pluginRepository> | |
</pluginRepositories> | |
<dependencies> | |
<!-- Logging --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>${slf4j.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>${logback.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>${lombok.version}</version> | |
</dependency> | |
<!-- Kafka --> | |
<dependency> | |
<groupId>org.apache.kafka</groupId> | |
<artifactId>kafka-streams</artifactId> | |
<version>${kafka.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.kafka</groupId> | |
<artifactId>kafka-clients</artifactId> | |
<version>${kafka.version}</version> | |
</dependency> | |
<!-- Confluent --> | |
<dependency> | |
<groupId>io.confluent</groupId> | |
<artifactId>kafka-avro-serializer</artifactId> | |
<version>${confluent.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.confluent</groupId> | |
<artifactId>kafka-schema-registry-client</artifactId> | |
<version>${confluent.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.confluent</groupId> | |
<artifactId>kafka-streams-avro-serde</artifactId> | |
<version>${confluent.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.confluent</groupId> | |
<artifactId>kafka-streams-json-schema-serde</artifactId> | |
<version>${confluent.version}</version> | |
</dependency> | |
<!-- Avro --> | |
<dependency> | |
<groupId>org.apache.avro</groupId> | |
<artifactId>avro</artifactId> | |
<version>${avro.version}</version> | |
</dependency> | |
<!-- Jackson --> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-databind</artifactId> | |
<version>${jackson.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
<artifactId>jackson-core</artifactId> | |
<version>${jackson.version}</version> | |
</dependency> | |
<!-- Lombok --> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>${lombok.version}</version> | |
</dependency> | |
<!-- Testing --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.13.2</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.kafka</groupId> | |
<artifactId>kafka-streams-test-utils</artifactId> | |
<version>${confluent.version}-ccs</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment