<?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>external</artifactId>
    <groupId>com.fitbur.external</groupId>
    <version>0.6.1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>external-docker-java</artifactId>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <configuration>
          <relocations>
            <relocation>
              <pattern>com</pattern>
              <shadedPattern>com.fitbur</shadedPattern>
            </relocation>
            <relocation>
              <pattern>de</pattern>
              <shadedPattern>com.fitbur</shadedPattern>
            </relocation>
            <relocation>
              <pattern>io</pattern>
              <shadedPattern>com.fitbur</shadedPattern>
            </relocation>
            <relocation>
              <pattern>javassist</pattern>
              <shadedPattern>com.fitbur</shadedPattern>
            </relocation>
            <relocation>
              <pattern>jersey</pattern>
              <shadedPattern>com.fitbur</shadedPattern>
            </relocation>
            <relocation>
              <pattern>org</pattern>
              <shadedPattern>com.fitbur</shadedPattern>
              <excludes>
                <exclude>org.slf4j.*</exclude>
                <exclude>org.apache.commons.logging.*</exclude>
                <exclude>org.xml.sax.*</exclude>
                <exclude>org.w3c.dom.*</exclude>
              </excludes>
            </relocation>
            <relocation>
              <pattern>socketfactory</pattern>
              <shadedPattern>com.fitbur</shadedPattern>
            </relocation>
          </relocations>
          <filters>
            <filter>
              <artifact>*:*</artifact>
              <excludes>
                <exclude>META-INF/*.SF</exclude>
                <exclude>META-INF/*.DSA</exclude>
                <exclude>META-INF/*.RSA</exclude>
              </excludes>
            </filter>
          </filters>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <properties>
    <docker.java.version>3.0.0</docker.java.version>
  </properties>
</project>

