<?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">
  <modelVersion>4.0.0</modelVersion>

  <groupId>me.dinowernli</groupId>
  <artifactId>java-grpc-prometheus</artifactId>
  <version>0.6.0</version>
  <packaging>jar</packaging>

  <organization>
      <name>me.dinowernli</name>
  </organization>
  <name>java-grpc-prometheus</name>
  <description>Java interceptors which can be used to monitor Grpc services using Prometheus.</description>
  <url>https://github.com/grpc-ecosystem/java-grpc-prometheus</url>

  <developers>
    <developer>
      <id>dino</id>
      <name>Dino</name>
    </developer>
  </developers>

  <scm>
      <connection>scm:git:git://github.com/grpc-ecosystem/java-grpc-prometheus.git</connection>
      <developerConnection>scm:git:git://github.com/grpc-ecosystem/java-grpc-prometheus.git</developerConnection>
      <url>https://github.com/grpc-ecosystem/java-grpc-prometheus</url>
      <tag>HEAD</tag>
  </scm>

  <licenses>
      <license>
          <name>Apache 2.0 License</name>
          <url>https://github.com/dinowernli/java-grpc-prometheus/blob/master/LICENSE</url>
          <distribution>repo</distribution>
      </license>
  </licenses>

  <dependencies>
          <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
            <version>3.0.2</version>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>failureaccess</artifactId>
            <version>1.0.1</version>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>30.0-android</version>
        </dependency>
        <dependency>
            <groupId>com.google.j2objc</groupId>
            <artifactId>j2objc-annotations</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>io.prometheus</groupId>
            <artifactId>simpleclient</artifactId>
            <version>0.11.0</version>
        </dependency>
  </dependencies>

</project>
