Skip to content

Commit

Permalink
#46 - Added AVRO serializer to the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ttimot24 authored Sep 16, 2024
1 parent 070c027 commit 81d57a9
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,17 @@
<maven.compiler.target>17</maven.compiler.target>
<keycloak.version>21.1.1</keycloak.version>
<kafka.version>3.4.0</kafka.version>
<confluent.version>7.5.0</confluent.version>
<junit.version>5.9.2</junit.version>
</properties>

<repositories>
<repository>
<id>confluent</id>
<url>https://packages.confluent.io/maven/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.keycloak</groupId>
Expand Down Expand Up @@ -48,6 +56,17 @@
<version>${kafka.version}</version>
</dependency>

<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-schema-registry</artifactId>
<version>${confluent.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-avro-serializer</artifactId>
<version>${confluent.version}</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
Expand Down Expand Up @@ -82,4 +101,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 81d57a9

Please sign in to comment.