vertx-grpc-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-grpc-server</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-server</artifactId> <name>Vert.x gRPC Server</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> <!-- Self signed certificate generation --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <executions> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> <goal>test-compile-custom</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>io/vertx/grpc/server/**/*ITest.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>interop-tests</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <includes> <include>io/vertx/grpc/server/web/interop/InteropITest.java</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>