<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>io.github.atos-digital-id</groupId>
  <artifactId>paprika-maven-plugin</artifactId>
  <version>0.8.0</version>
  <packaging>maven-plugin</packaging>
  <name>Paprika Maven Plugin</name>
  <description>Paprika is a Maven plugin which computes version numbers based on the tags and history of Git, in a multi-module context.</description>
  <url>https://atos-digital-id.github.io/paprika/</url>
  <licenses>
    <license>
      <name>GNU Lesser General Public License v3.0 or later</name>
      <url>https://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Benoit Charles</name>
      <email>benoit.charles@atos.net</email>
      <organization>Atos</organization>
      <organizationUrl>http://atos.net</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/atos-digital-id/paprika.git</connection>
    <developerConnection>scm:git:ssh://github.com:atos-digital-id/paprika.git</developerConnection>
    <url>http://github.com/atos-digital-id/paprika/tree/main</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-core</artifactId>
      <version>3.8.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>3.8.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.plugin-tools</groupId>
      <artifactId>maven-plugin-annotations</artifactId>
      <version>3.6.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jgit</groupId>
      <artifactId>org.eclipse.jgit</artifactId>
      <version>5.12.0.202106070339-r</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>2.0.0-alpha1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>2.0.0-alpha1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.20</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
