summaryrefslogtreecommitdiff
path: root/kafka-sandbox/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'kafka-sandbox/pom.xml')
-rw-r--r--kafka-sandbox/pom.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/kafka-sandbox/pom.xml b/kafka-sandbox/pom.xml
new file mode 100644
index 0000000..eb33e8d
--- /dev/null
+++ b/kafka-sandbox/pom.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ 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>io.trygvis</groupId>
+ <artifactId>kafka-sandbox</artifactId>
+ <version>1.0-SNAPSHOT</version>
+
+ <properties>
+ <maven.compiler.source>21</maven.compiler.source>
+ <maven.compiler.target>21</maven.compiler.target>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <kafka-clients.version>3.5.1</kafka-clients.version>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.kafka</groupId>
+ <artifactId>kafka-clients</artifactId>
+ <version>${kafka-clients.version}</version>
+ </dependency>
+ </dependencies>
+
+</project>