protocol
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.inscopemetrics.client</groupId>
<artifactId>protocol</artifactId>
<version>0.13.0</version>
</dependency><?xml version="1.0"?>
<!--
~ Copyright 2016 Inscope Metrics Inc
~
~ 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>io.inscopemetrics.build</groupId>
<artifactId>parent-pom</artifactId>
<version>2.5.1</version>
<relativePath />
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.inscopemetrics.client</groupId>
<artifactId>protocol</artifactId>
<packaging>jar</packaging>
<name>Metrics Client Protocol</name>
<description>Protocol definition between a metrics client and an aggregator or storage system.</description>
<url>https://github.com/InscopeMetrics/client-protocol</url>
<version>0.13.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.io</email>
<organization>Inscope Metrics</organization>
<organizationUrl>http://www.inscopemetrics.io</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>villekoskela</id>
<email>ville.koskela@inscopemetrics.io</email>
<organization>Inscope Metrics</organization>
<organizationUrl>http://www.inscopemetrics.io</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:InscopeMetrics/client-protocol.git</connection>
<developerConnection>scm:git:git@github.com:InscopeMetrics/client-protocol.git</developerConnection>
<url>https://github.com/InscopeMetrics/client-protocol</url>
<tag>protocol-0.13.0</tag>
</scm>
<properties>
<!--Dependency versions-->
<protobuf.version>4.31.1</protobuf.version>
<protoc.version>4.31.1</protoc.version>
<!--Plugin versions-->
<protoc.jar.maven.plugin.version>3.11.4</protoc.jar.maven.plugin.version>
<build.helper.plugin.version>3.6.0</build.helper.plugin.version>
<!-- Spotbugs -->
<spotbugs.exclude>spotbugs.exclude.xml</spotbugs.exclude>
</properties>
<build>
<plugins>
<!-- Customize Inherited Plugins -->
<plugin>
<groupId>com.rimerosolutions.maven.plugins</groupId>
<artifactId>wrapper-maven-plugin</artifactId>
<inherited>false</inherited>
</plugin>
<!-- Project Specific Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Xlint:-processing</arg>
</compilerArgs>
</configuration>
</plugin>
<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.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>