<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>tools</artifactId>
    <groupId>org.testifyproject.tools</groupId>
    <version>0.9.2</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>test-logger</artifactId>
  <name>test-logger</name>
  <description>A module that provides logging configuration to log messages from
        various logging systems to the console using SLF4J, Logback, and Jansi</description>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <configuration>
          <relocations>
            <relocation>
              <pattern>org.fusesource</pattern>
              <shadedPattern>org.testifyproject</shadedPattern>
            </relocation>
          </relocations>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <properties>
    <logback.version>1.2.1</logback.version>
    <slf4j.version>1.7.24</slf4j.version>
    <janino.version>2.7.8</janino.version>
    <log4j2.version>2.7</log4j2.version>
    <jansi.version>1.14</jansi.version>
  </properties>
</project>

