<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.bakdata</groupId>
  <artifactId>common-kafka-streams</artifactId>
  <version>1.0.1</version>
  <name>com.bakdata:common-kafka-streams</name>
  <description>Collection of commonly used modules when writing a Kafka Streams Application</description>
  <url>https://github.com/bakdata/common-kafka-streams</url>
  <organization>
    <name>bakdata.com</name>
    <url>https://github.com/bakdata</url>
  </organization>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://github.com/bakdata/common-kafka-streams/blob/master/LICENSE</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>AHeise</id>
      <name>Arvid Heise</name>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/bakdata/common-kafka-streams.git</connection>
    <developerConnection>scm:git:ssh://github.com/bakdata/common-kafka-streams.git</developerConnection>
    <url>https://github.com/bakdata/common-kafka-streams</url>
  </scm>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/bakdata/common-kafka-streams/issues</url>
  </issueManagement>
  <dependencies>
    <dependency>
      <groupId>info.picocli</groupId>
      <artifactId>picocli</artifactId>
      <version>2.3.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.kafka</groupId>
      <artifactId>kafka-streams</artifactId>
      <version>2.0.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>3.8.1</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>io.confluent</groupId>
      <artifactId>kafka-streams-avro-serde</artifactId>
      <version>5.0.0</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
