<?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>nl.gn0s1s</groupId>
    <artifactId>sbt-dotenv_2.12_1.0</artifactId>
    <packaging>jar</packaging>
    <description>An sbt plugin to load environment variables from .env into the JVM System Environment for local development. Assists with 'Twelve Factor App' development principle 3 'Store config in the environment'.</description>
    <url>https://github.com/philippus/sbt-dotenv</url>
    <version>3.2.0</version>
    <licenses>
        <license>
            <name>MIT</name>
            <url>http://opensource.org/licenses/MIT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>sbt-dotenv</name>
    <inceptionYear>2014</inceptionYear>
    <organization>
        <name>nl.gn0s1s</name>
        <url>https://github.com/philippus/sbt-dotenv</url>
    </organization>
    <scm>
        <url>https://github.com/Philippus/sbt-dotenv</url>
        <connection>scm:git:https://github.com/Philippus/sbt-dotenv.git</connection>
        <developerConnection>scm:git:git@github.com:Philippus/sbt-dotenv.git</developerConnection>
    </scm>
    <developers>
        <developer>
            <id>Philippus</id>
            <name>Philippus Baalman</name>
            <url>https://github.com/philippus</url>
        </developer>
        <developer>
            <id>mefellows</id>
            <name>Matt Fellows</name>
            <url>http://www.onegeek.com.au</url>
        </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.20</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.scala-sbt</groupId>
            <artifactId>sbt</artifactId>
            <version>1.5.8</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_2.12</artifactId>
            <version>3.2.19</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>