<?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.cb372</groupId>
    <artifactId>sbt-explicit-dependencies</artifactId>
    <packaging>jar</packaging>
    <description>An sbt plugin to check that your project does not directly depend on any transitive dependencies for compilation</description>
    <url>https://github.com/cb372/sbt-explicit-dependencies</url>
    <version>0.3.1</version>
    <licenses>
        <license>
            <name>Apache-2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>sbt-explicit-dependencies</name>
    <organization>
        <name>com.github.cb372</name>
        <url>https://github.com/cb372/sbt-explicit-dependencies</url>
    </organization>
    <scm>
        <url>https://github.com/cb372/sbt-explicit-dependencies</url>
        <connection>scm:git:https://github.com/cb372/sbt-explicit-dependencies.git</connection>
        <developerConnection>scm:git:git@github.com:cb372/sbt-explicit-dependencies.git</developerConnection>
    </scm>
    <developers>
        <developer>
            <id>cb372</id>
            <name>Chris Birchall</name>
            <url>https://github.com/cb372</url>
            <email>chris.birchall@gmail.com</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.17</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.scala-sbt</groupId>
            <artifactId>sbt</artifactId>
            <version>1.8.3</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>