vertx-grpc-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-grpc-client</artifactId> <version>5.0.0.CR7</version> </dependency>
<?xml version="1.0"?> <!-- ~ Copyright (c) 2011-2014 The original author or authors ~ ~ All rights reserved. This program and the accompanying materials ~ are made available under the terms of the Eclipse Public License v1.0 ~ and Apache License v2.0 which accompanies this distribution. ~ ~ The Eclipse Public License is available at ~ http://www.eclipse.org/legal/epl-v10.html ~ ~ The Apache License v2.0 is available at ~ http://www.opensource.org/licenses/apache2.0.php ~ ~ You may elect to redistribute this code under either of these licenses. --> <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> <parent> <groupId>io.vertx</groupId> <artifactId>vertx-grpc-aggregator</artifactId> <version>5.0.0.CR7</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>vertx-grpc-client</artifactId> <name>Vert.x gRPC Client</name> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-grpc-common</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-grpc-common</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> <scope>test</scope> </dependency> <!-- Self signed certificate generation --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> <scope>test</scope> </dependency> </dependencies> </project>