<?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>app.wordpace</groupId>
    <artifactId>inkwell_2.12</artifactId>
    <packaging>jar</packaging>
    <description>Generate Scala code from a database schema. Highly extensible. Built for and tested with Quill.</description>
    <url>https://github.com/marcopennekamp/inkwell</url>
    <version>0.2.0</version>
    <licenses>
        <license>
            <name>Apache-2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>inkwell</name>
    <organization>
        <name>app.wordpace</name>
        <url>https://github.com/marcopennekamp/inkwell</url>
    </organization>
    <scm>
        <url>https://github.com/marcopennekamp/inkwell</url>
        <connection>scm:git:git@github.com:marcopennekamp/inkwell.git</connection>
    </scm>
    <developers>
        <developer>
            <id>marcopennekamp</id>
            <name>Marco Pennekamp</name>
            <email>marco@wordpace.app</email>
            <url>https://marcopennekamp.com/</url>
        </developer>
    </developers>
    <properties>
        <info.apiURL>https://github.com/marcopennekamp/inkwell</info.apiURL>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.12.8</version>
        </dependency>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-reflect</artifactId>
            <version>2.12.8</version>
        </dependency>
        <dependency>
            <groupId>org.scalameta</groupId>
            <artifactId>scalafmt-dynamic_2.12</artifactId>
            <version>2.0.0-RC6</version>
        </dependency>
        <dependency>
            <groupId>io.getquill</groupId>
            <artifactId>quill-core_2.12</artifactId>
            <version>3.1.0</version>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_2.12</artifactId>
            <version>3.0.4</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.7.16</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>