<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.dimajix.flowman.maven</groupId>
  <artifactId>flowman-provider-azure</artifactId>
  <version>0.4.0</version>
  <name>Flowman Maven Azure Provider</name>
  <description>Flowman Maven Azure Provider for deploying artifacts to S3</description>
  <url>https://flowman.io/flowman-provider-azure</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Kaya Kupferschmidt</name>
      <email>k.kupferschmidt@dimajix.de</email>
      <organization>dimajix</organization>
      <organizationUrl>https://www.dimajix.de</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/dimajix/flowman-maven.git/flowman-provider-azure</connection>
    <developerConnection>scm:git:ssh://github.com/dimajix/flowman-maven.git/flowman-provider-azure</developerConnection>
    <url>https://github.com/dimajix/flowman-maven/tree/main/flowman-provider-azure</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.dimajix.flowman.maven</groupId>
      <artifactId>flowman-maven-plugin</artifactId>
      <version>0.4.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.azure</groupId>
      <artifactId>azure-storage-file-datalake</artifactId>
      <version>12.14.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.azure</groupId>
      <artifactId>azure-identity</artifactId>
      <version>1.8.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.24</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.13</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>
