<?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>eci-elements</artifactId>
    <groupId>dev.getelements.elements</groupId>
    <version>3.3.10</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>sdk-local</artifactId>
  <name>${project.artifactId}</name>
  <version>3.3.10</version>
  <url>https://namazustudios.com</url>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.6.0</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <relocations />
              <filters>
                <filter>
                  <artifact>*:*</artifact>
                  <excludes>
                    <exclude>META-INF/*.SF</exclude>
                    <exclude>META-INF/*.DSA</exclude>
                    <exclude>META-INF/*.RSA</exclude>
                  </excludes>
                </filter>
                <filter>
                  <artifact>org.openapitools:openapi-generator-cli</artifact>
                  <excludes>
                    <exclude>org/slf4j/impl/**</exclude>
                    <exclude>META-INF/services/org.slf4j.impl.StaticLoggerBinder</exclude>
                    <exclude>org/apache/log4j/**</exclude>
                    <exclude>META-INF/*log4j*</exclude>
                    <exclude>ch/qos/logback/**</exclude>
                    <exclude>META-INF/services/ch.qos.logback.classic.spi.Configurator</exclude>
                  </excludes>
                </filter>
              </filters>
              <transformers>
                <transformer />
              </transformers>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>1.2.3</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>logback-core</artifactId>
          <groupId>ch.qos.logback</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>
