<?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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.github.sbt</groupId>
    <artifactId>sbt-avro</artifactId>
    <packaging>jar</packaging>
    <description>Sbt plugin for compiling Avro sources</description>
    <url>https://github.com/sbt/sbt-avro</url>
    <version>3.4.0</version>
    <licenses>
        <license>
            <name>BSD 3-Clause</name>
            <url>https://github.com/sbt/sbt-avro/blob/master/LICENSE</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>sbt-avro</name>
    <organization>
        <name>sbt</name>
        <url>https://www.scala-sbt.org/</url>
    </organization>
    <scm>
        <url>https://github.com/sbt/sbt-avro</url>
        <connection>scm:git:git@github.com:sbt/sbt-avro.git</connection>
    </scm>
    <developers>
        <developer>
            <id>nevillelyh</id>
            <name>Neville Li</name>
            <url>https://www.lyh.me/</url>
            <email>@nevillelyh</email>
        </developer>
        <developer>
            <id>RustedBones</id>
            <name>Michel Davit</name>
            <url>https://michel.davit.fr</url>
            <email>michel@davit.fr</email>
        </developer>
    </developers>
    <properties>
        <scalaVersion>2.12</scalaVersion>
        <sbtVersion>1.0</sbtVersion>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.12.15</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.scala-sbt</groupId>
            <artifactId>sbt</artifactId>
            <version>1.3.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.avro</groupId>
            <artifactId>avro-compiler</artifactId>
            <version>1.11.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.specs2</groupId>
            <artifactId>specs2-core_2.12</artifactId>
            <version>4.13.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>