<?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>google-cloud-nio-parent</artifactId>
    <groupId>com.google.cloud</groupId>
    <version>0.123.28</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>google-cloud-nio</artifactId>
  <name>Google Cloud NIO</name>
  <version>0.123.28</version>
  <description>FileSystemProvider for Java NIO to access Google Cloud Storage transparently.</description>
  <url>https://github.com/googleapis/java-storage-nio</url>
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <configuration>
          <skip>false</skip>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.3.0</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <shadedArtifactAttached>true</shadedArtifactAttached>
          <relocations>
            <relocation>
              <pattern>com</pattern>
              <shadedPattern>shaded.cloud_nio.com</shadedPattern>
              <includes>
                <include>com.google.**</include>
                <include>com.fasterxml.**</include>
              </includes>
              <excludes>
                <exclude>com.google.cloud.storage.**</exclude>
                <exclude>com.google.auto.**</exclude>
              </excludes>
            </relocation>
            <relocation>
              <pattern>org</pattern>
              <shadedPattern>shaded.cloud_nio.org</shadedPattern>
              <includes>
                <include>org.apache.**</include>
                <include>org.threeten.**</include>
                <include>org.codehaus.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>io</pattern>
              <shadedPattern>shaded.cloud_nio.io</shadedPattern>
              <includes>
                <include>io.opencensus.**</include>
                <include>io.grpc.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>okio</pattern>
              <shadedPattern>shaded.cloud_nio.okio</shadedPattern>
            </relocation>
            <relocation>
              <pattern>google</pattern>
              <shadedPattern>shaded.cloud_nio.google</shadedPattern>
            </relocation>
          </relocations>
          <transformers>
            <transformer />
          </transformers>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>com.google.auto.value</groupId>
      <artifactId>auto-value-annotations</artifactId>
      <version>1.9</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-testlib</artifactId>
      <version>31.1-jre</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.truth</groupId>
      <artifactId>truth</artifactId>
      <version>1.1.3</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>checker-qual</artifactId>
          <groupId>org.checkerframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>asm</artifactId>
          <groupId>org.ow2.asm</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.google.auth</groupId>
      <artifactId>google-auth-library-credentials</artifactId>
      <version>1.6.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>4.4.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>byte-buddy</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>byte-buddy-agent</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>objenesis</artifactId>
          <groupId>org.objenesis</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.google.cloud</groupId>
      <artifactId>google-cloud-core</artifactId>
      <version>2.6.0</version>
      <classifier>tests</classifier>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <properties>
    <site.installationModule>google-cloud-nio</site.installationModule>
  </properties>
</project>
