metrics-aggregator-protocol
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.arpnetworking.metrics</groupId> <artifactId>metrics-aggregator-protocol</artifactId> <version>1.0.2</version> </dependency>
<?xml version="1.0"?> <!-- ~ Copyright 2016 Groupon.com ~ ~ 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>1.0.18</version> <relativePath /> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.arpnetworking.metrics</groupId> <artifactId>metrics-aggregator-protocol</artifactId> <packaging>jar</packaging> <name>Metrics Aggregator Protocol</name> <description>Protocol definition between Metrics Aggrgator Daemon and Metrics Cluster Aggregator.</description> <url>https://github.com/ArpNetworking/metrics-aggregator-protocol</url> <version>1.0.2</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>brandonarp@gmail.com</email> <organization>Arp Networking</organization> <organizationUrl>http://www.arpnetworking.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>villekoskela</id> <email>vkoskela@groupon.com</email> <organization>Groupon</organization> <organizationUrl>http://www.groupon.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:git@github.com:arpnetworking/metrics-aggregator-protocol.git</connection> <developerConnection>scm:git:git@github.com:arpnetworking/metrics-aggregator-protocol.git</developerConnection> <url>https://github.com/arpnetworking/metrics-aggregator-protocol</url> <tag>metrics-aggregator-protocol-1.0.2</tag> </scm> <properties> <!--Dependency versions--> <protobuf.version>2.6.1</protobuf.version> <!--Plugin versions--> <protoc.jar.maven.plugin.version>3.0.0-a3</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> <protocVersion>${protobuf.version}</protocVersion> <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>1.10</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>