<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright (c) Microsoft Corporation. All rights reserved.
  ~ Licensed under the MIT License.
  -->

<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>com.microsoft.azure</groupId>
    <artifactId>azure-schemaregistry-kafka-avro</artifactId>
    <version>1.1.0-beta.1</version>
    <packaging>jar</packaging>
    <name>Avro serializer for Apache Kafka client</name>
    <description> Avro serializer with Azure Schema Registry for Apache Kafka client </description>
    <url>https://github.com/Azure/azure-schema-registry-for-kafka</url>

    <licenses>
        <license>
            <name>MIT license</name>
            <url>http://www.opensource.org/licenses/mit-license.php</url>
        </license>
    </licenses>
    <developers>
        <developer>
            <name>Azure EventHubs</name>
            <organization>Microsoft Corporation</organization>
			<organizationUrl>http://www.microsoft.com</organizationUrl>
        </developer>
    </developers>
	
    <scm>
        <connection>scm:git:git@github.com:Azure/azure-schema-registry-for-kafka.git</connection>
        <developerConnection>scm:git:git@github.com:Azure/azure-schema-registry-for-kafka.git</developerConnection>
        <url>scm:git:https://github.com/Azure/azure-schema-registry-for-kafka</url>
    </scm>

  <dependencies>
    <dependency>
      <groupId>org.apache.kafka</groupId>
      <artifactId>kafka-clients</artifactId>
      <version>2.3.1</version>
    </dependency>
    <dependency>
      <groupId>com.azure</groupId>
      <artifactId>azure-data-schemaregistry-apacheavro</artifactId>
      <version>1.2.0-beta.1</version>
    </dependency>
    <dependency>
      <groupId>com.azure</groupId>
      <artifactId>azure-data-schemaregistry</artifactId>
      <version>1.4.0-beta.1</version>
    </dependency>

    <!-- test dependencies -->
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>5.6.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>5.6.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-params</artifactId>
      <version>5.6.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
