<?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="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.terminological</groupId>
  <artifactId>r6-generator-maven-plugin</artifactId>
  <version>0.5.3</version>
  <packaging>maven-plugin</packaging>
  <name>R6 Generator Maven Plugin</name>
  <description>A maven plugin for generating R6 package encapsualting java libraries</description>
  <url>https://github.com/terminological/r6-generator-maven-plugin</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Rob Challen</name>
      <email>rob@terminological.co.uk</email>
      <organization>terminological</organization>
      <organizationUrl>https://www.terminological.co.uk</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@github.com:terminological/r6-generator.git/r6-generator/r6-generator-maven-plugin</connection>
    <developerConnection>scm:git:git@github.com:terminological/r6-generator.git/r6-generator/r6-generator-maven-plugin</developerConnection>
    <url>https://github.com/terminological/r6-generator/r6-generator/r6-generator-maven-plugin</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>io.github.terminological</groupId>
      <artifactId>r6-generator-runtime</artifactId>
      <version>0.5.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven.plugin-tools</groupId>
      <artifactId>maven-plugin-tools-annotations</artifactId>
      <version>3.6.4</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>sisu-guice</artifactId>
          <groupId>org.sonatype.sisu</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.google.inject</groupId>
      <artifactId>guice</artifactId>
      <version>4.2.3</version>
      <classifier>no_aop</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.twdata.maven</groupId>
      <artifactId>mojo-executor</artifactId>
      <version>2.4.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.freemarker</groupId>
      <artifactId>freemarker</artifactId>
      <version>2.3.31</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.thoughtworks.qdox</groupId>
      <artifactId>qdox</artifactId>
      <version>2.0-M4</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.reflections</groupId>
      <artifactId>reflections</artifactId>
      <version>0.10.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-text</artifactId>
      <version>1.8</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.7</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>
