<?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>org.make</groupId>
    <artifactId>git-hooks-plugin</artifactId>
    <packaging>jar</packaging>
    <description> SBT plugin allowing to easily manage git hooks on a project </description>
    <url>https://gitlab.com/makeorg/devtools/git-hooks-plugin</url>
    <version>1.0.6</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>git-hooks-plugin</name>
    <inceptionYear>2017</inceptionYear>
    <organization>
        <name>org.make</name>
        <url>https://make.org</url>
    </organization>
    <scm>
        <url>https://gitlab.com/makeorg/devtools/git-hooks-plugin</url>
        <connection>scm:git:git://gitlab.com:makeorg/devtools/git-hooks-plugin.git</connection>
        <developerConnection>scm:git:ssh://gitlab.com:makeorg/devtools/git-hooks-plugin.git</developerConnection>
    </scm>
    <developers>
        <developer>
            <id>flaroche</id>
            <name>François LAROCHE</name>
            <url>https://github.com/larochef</url>
            <email>fl@make.org</email>
        </developer>
        <developer>
            <id>cpestoury</id>
            <name>Charley PESTOURY</name>
            <url>https://gitlab.com/cpestoury</url>
            <email>cp@make.org</email>
        </developer>
        <developer>
            <id>csalmon-legagneur</id>
            <name>Colin SALMON-LEGAGNEUR</name>
            <url>https://gitlab.com/csalmon-</url>
            <email>salmonl.colin@gmail.com</email>
        </developer>
        <developer>
            <id>pda</id>
            <name>Philippe de ARAUJO</name>
            <url>https://gitlab.com/philippe.da</url>
            <email>pa@make.org</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.12</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.scala-sbt</groupId>
            <artifactId>sbt</artifactId>
            <version>1.4.9</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>