<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>me.dinowernli</groupId>
    <artifactId>java-grpc-prometheus</artifactId>
    <version>0.3.0</version>
    <packaging>jar</packaging>

    <name>${project.groupId}:${project.artifactId}</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>

    <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>

    <developers>
        <developer>
            <name>Dino Wernli</name>
            <email>dinowernli@gmail.com</email>
        </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>git@github.com:grpc-ecosystem/java-grpc-prometheus.git</url>
    </scm>

    <dependencies>
        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-all</artifactId>
            <version>1.0.0</version>
        </dependency>
        <dependency>
            <groupId>io.prometheus</groupId>
            <artifactId>simpleclient</artifactId>
            <version>0.0.14</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>TypesafeRepository</id>
            <name>Typesafe Repository</name>
            <url>http://repo.typesafe.com/typesafe/releases/</url>
            <layout>default</layout>
        </repository>
        <repository>
            <id>MavenCentralServer</id>
            <name>Maven Central Server</name>
            <url>http://repo1.maven.org/maven2/</url>
            <layout>default</layout>
        </repository>
    </repositories>
</project>
