prometheus-remote-protocol
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.arpnetworking.metrics</groupId> <artifactId>prometheus-remote-protocol</artifactId> <version>1.2.0</version> </dependency>
<?xml version="1.0"?> <!-- ~ Copyright 2018 Bruno Green ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <groupId>com.arpnetworking.build</groupId> <artifactId>arpnetworking-parent-pom</artifactId> <version>3.3.9</version> <relativePath /> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.arpnetworking.metrics</groupId> <artifactId>prometheus-remote-protocol</artifactId> <packaging>jar</packaging> <name>Prometheus Remote Protocol</name> <description>Prometheus remote protocol for building storage integrations</description> <url>https://github.com/ArpNetworking/prometheus-remote-protocol</url> <version>1.2.0</version> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>brandonarp</id> <email>brandon.arp@inscopemetrics.com</email> <organization>Inscope Metrics</organization> <organizationUrl>http://www.inscopemetrics.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>bngreen</id> <email>bruno.green@gmail.com</email> <roles> <role>developer</role> </roles> </developer> <developer> <id>villekoskela</id> <email>ville.koskela@inscopemetrics.com</email> <organization>Inscope Metrics</organization> <organizationUrl>http://www.inscopemetrics.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:git@github.com:arpnetworking/prometheus-remote-protocol.git</connection> <developerConnection>scm:git:git@github.com:arpnetworking/prometheus-remote-protocol.git</developerConnection> <url>https://github.com/arpnetworking/prometheus-remote-protocol</url> <tag>prometheus-remote-protocol-1.2.0</tag> </scm> <properties> <!--Dependency versions--> <protobuf.version>4.31.1</protobuf.version> <protoc.version>4.31.1</protoc.version> <!-- Spotbugs --> <spotbugs.exclude>${project.basedir}/spotbugs.exclude.xml</spotbugs.exclude> <!--Plugin versions--> <build.helper.maven.plugin.version>3.6.0</build.helper.maven.plugin.version> <protoc.jar.maven.plugin.version>3.11.4</protoc.jar.maven.plugin.version> </properties> <build> <plugins> <!-- Enable Inherited Plugins --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>com.rimerosolutions.maven.plugins</groupId> <artifactId>wrapper-maven-plugin</artifactId> <inherited>false</inherited> </plugin> <!-- Project Specific Plugins --> <plugin> <groupId>com.github.os72</groupId> <artifactId>protoc-jar-maven-plugin</artifactId> <version>${protoc.jar.maven.plugin.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <protocArtifact>com.google.protobuf:protoc:${protoc.version}</protocArtifact> <includeDirectories> <include>src/main/proto</include> </includeDirectories> <inputDirectories> <include>src/main/proto</include> </inputDirectories> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build.helper.maven.plugin.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>target/generated-sources</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> </dependencies> </project>