<?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>de.codecentric.reedelk</groupId>
  <artifactId>module-maven-plugin</artifactId>
  <version>2.0.0</version>
  <packaging>maven-plugin</packaging>
  <name>module-maven-plugin</name>
  <description>Reedelk Runtime</description>
  <url>https://github.com/codecentric/reedelk-runtime/module-maven-plugin</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://opensource.org/licenses/Apache-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Daniel Kocot</name>
      <email>daniel.kocot@codecentric.de</email>
      <organization>codecentric AG</organization>
      <organizationUrl>http://www.codecentric.de</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/codecentric/reedelk-runtime.git/module-maven-plugin</connection>
    <developerConnection>scm:git:ssh://git@github.com/reedelk-runtime.git/module-maven-plugin</developerConnection>
    <url>https://github.com/codecentric/reedelk-runtime/tree/master/module-maven-plugin</url>
  </scm>
  <distributionManagement>
    <repository>
      <id>oss.sonatype.org</id>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
    <snapshotRepository>
      <id>github</id>
      <name>GitHub Packages</name>
      <url>https://maven.pkg.github.com/codecentric/reedelk-runtime</url>
    </snapshotRepository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>de.codecentric.reedelk</groupId>
      <artifactId>runtime-api</artifactId>
      <version>2.0.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>de.codecentric.reedelk</groupId>
      <artifactId>module-descriptor</artifactId>
      <version>2.0.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.17</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>3.6.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.plugin-tools</groupId>
      <artifactId>maven-plugin-annotations</artifactId>
      <version>3.6.0</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
