cantor-grpc-protos
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-grpc-protos</artifactId>
<version>0.5.23</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2020, Salesforce.com, Inc.
~ All rights reserved.
~ SPDX-License-Identifier: BSD-3-Clause
~ For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>cantor-grpc-protos</artifactId>
<packaging>jar</packaging>
<name>cantor-grpc-protos</name>
<description>Cantor gRPC client</description>
<parent>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-parent</artifactId>
<version>0.5.23</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<javax.annotation.version>1.3.2</javax.annotation.version>
</properties>
<dependencies>
<!--CANTOR BASE-->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-base</artifactId>
<version>${project.version}</version>
</dependency>
<!--CANTOR COMMON-->
<dependency>
<groupId>com.salesforce.cantor</groupId>
<artifactId>cantor-common</artifactId>
<version>${project.version}</version>
</dependency>
<!--GRPC-->
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>${javax.annotation.version}</version>
</dependency>
<!--TEST SCOPE-->
<!--LOGBACK-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<!--TESTNG -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.4.1.Final</version>
</extension>
</extensions>
<!--PROTOBUF PLUGIN-->
<plugins>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.25.1:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>