<?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>flink-filesystems</artifactId>
    <groupId>org.apache.flink</groupId>
    <version>2.0.0.100-dep-1010</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>flink-azure-fs-hadoop</artifactId>
  <name>Flink : FileSystems : Azure FS Hadoop</name>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <id>shade-flink</id>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <includes>
                  <include>*:*</include>
                </includes>
              </artifactSet>
              <relocations>
                <relocation>
                  <pattern>org.apache.flink.runtime.fs.hdfs</pattern>
                  <shadedPattern>org.apache.flink.fs.azure.common.hadoop</shadedPattern>
                </relocation>
                <relocation>
                  <pattern>org.apache.flink.runtime.util</pattern>
                  <shadedPattern>org.apache.flink.fs.azure.common</shadedPattern>
                </relocation>
              </relocations>
              <filters>
                <filter>
                  <artifact>*</artifact>
                  <excludes>
                    <exclude>properties.dtd</exclude>
                    <exclude>PropertyList-1.0.dtd</exclude>
                    <exclude>mozilla/**</exclude>
                    <exclude>META-INF/LICENSE.txt</exclude>
                  </excludes>
                </filter>
              </filters>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.apache.flink</groupId>
      <artifactId>flink-core</artifactId>
      <version>2.0.0.100-dep-1010</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.flink</groupId>
      <artifactId>flink-architecture-tests-test</artifactId>
      <version>2.0.0.100-dep-1010</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>flink-architecture-tests-base</artifactId>
          <groupId>org.apache.flink</groupId>
        </exclusion>
        <exclusion>
          <artifactId>archunit</artifactId>
          <groupId>com.tngtech.archunit</groupId>
        </exclusion>
        <exclusion>
          <artifactId>archunit-junit5</artifactId>
          <groupId>com.tngtech.archunit</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.microsoft.azure</groupId>
      <artifactId>azure</artifactId>
      <version>1.16.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>azure-client-runtime</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-client-authentication</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-resources</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-storage</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-network</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-compute</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-graph-rbac</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-keyvault</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-batch</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-trafficmanager</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-dns</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-redis</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-appservice</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-locks</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-eventhub</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-cdn</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-sql</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-containerinstance</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-containerregistry</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-containerservice</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-cosmosdb</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-search</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-msi</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-monitor</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-servicebus</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
        <exclusion>
          <artifactId>azure-mgmt-batchai</artifactId>
          <groupId>com.microsoft.azure</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.flink</groupId>
      <artifactId>flink-core</artifactId>
      <version>2.0.0.100-dep-1010</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.36</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>1.3.9</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.flink</groupId>
      <artifactId>flink-test-utils-junit</artifactId>
      <version>2.0.0.100-dep-1010</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>testcontainers</artifactId>
          <groupId>org.testcontainers</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter</artifactId>
      <version>5.11.4</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>junit-jupiter-api</artifactId>
          <groupId>org.junit.jupiter</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit-jupiter-params</artifactId>
          <groupId>org.junit.jupiter</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit-jupiter-engine</artifactId>
          <groupId>org.junit.jupiter</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.junit.vintage</groupId>
      <artifactId>junit-vintage-engine</artifactId>
      <version>5.11.4</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>junit-platform-engine</artifactId>
          <groupId>org.junit.platform</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
        <exclusion>
          <artifactId>apiguardian-api</artifactId>
          <groupId>org.apiguardian</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>3.23.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>byte-buddy</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>5.14.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>byte-buddy-agent</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>byte-buddy</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-junit-jupiter</artifactId>
      <version>5.14.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>junit-jupiter-api</artifactId>
          <groupId>org.junit.jupiter</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-all</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testcontainers</groupId>
      <artifactId>junit-jupiter</artifactId>
      <version>1.20.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>testcontainers</artifactId>
          <groupId>org.testcontainers</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.logging.log4j</groupId>
      <artifactId>log4j-slf4j-impl</artifactId>
      <version>2.25.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.logging.log4j</groupId>
      <artifactId>log4j-api</artifactId>
      <version>2.25.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.logging.log4j</groupId>
      <artifactId>log4j-core</artifactId>
      <version>2.25.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.logging.log4j</groupId>
      <artifactId>log4j-1.2-api</artifactId>
      <version>2.25.3</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.eclipse.jetty</groupId>
        <artifactId>jetty-util-ajax</artifactId>
        <version>${jetty.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <properties>
    <fs.azure.sdk.version>1.16.0</fs.azure.sdk.version>
    <jetty.version>9.3.24.v20180605</jetty.version>
    <fs.jackson.core.version>2.9.4</fs.jackson.core.version>
  </properties>
</project>
