<?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/xsd/maven-4.0.0.xsd">

  <modelVersion>4.0.0</modelVersion>
  <name>Google Cloud Native Image Support</name>
  <groupId>com.google.cloud</groupId>
  <artifactId>native-image-support</artifactId>
  <version>0.12.10</version><!-- {x-version-update:native-image-support:current} -->
  <packaging>jar</packaging>

  <parent>
    <artifactId>google-cloud-core-parent</artifactId>
    <groupId>com.google.cloud</groupId>
    <version>2.5.10</version> <!-- {x-version-update:google-cloud-core:current} -->
  </parent>

  <description>
    Core gRPC module for the google-cloud.
  </description>

  <dependencies>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>

    <dependency>
      <groupId>io.grpc</groupId>
      <artifactId>grpc-netty-shaded</artifactId>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>org.graalvm.nativeimage</groupId>
      <artifactId>svm</artifactId>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>org.graalvm.sdk</groupId>
      <artifactId>graal-sdk</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>