<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

  <modelVersion>4.0.0</modelVersion>

  <groupId>de.codecamp.tracer</groupId>
  <artifactId>tracer-parent</artifactId>
  <version>0.5.0</version>
  <packaging>pom</packaging>

  <name>tracer-parent</name>
  <description>Parent project for all modules.</description>
  <url>https://gitlab.com/codecamp-de/tracer</url>

  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Patrick Schmidt</name>
      <email>patrick@codecamp.de</email>
    </developer>
  </developers>

  <scm>
    <url>https://gitlab.com/codecamp-de/tracer</url>
    <connection>scm:git:https://gitlab.com/codecamp-de/tracer.git</connection>
    <developerConnection>scm:git:https://gitlab.com/codecamp-de/tracer.git</developerConnection>
  </scm>


  <properties>
    <maven.compiler.release>11</maven.compiler.release>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

    <m2e.apt.activation>jdt_apt</m2e.apt.activation>
  </properties>


  <build>

    <plugins>

      <plugin>
        <groupId>io.repaint.maven</groupId>
        <artifactId>tiles-maven-plugin</artifactId>
        <configuration>
          <tiles>
            <tile>de.codecamp.tiles:oss-build-tile:RELEASE</tile>
          </tiles>
        </configuration>
      </plugin>

    </plugins>

    <pluginManagement>
      <plugins>

        <!-- ECLIPSE Included for Eclipse and its lack of tiles support. -->
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.8.1</version>
        </plugin>

        <plugin>
          <groupId>io.repaint.maven</groupId>
          <artifactId>tiles-maven-plugin</artifactId>
          <version>2.19</version>
          <extensions>true</extensions>
        </plugin>

      </plugins>
    </pluginManagement>
  </build>

</project>