mirror of
https://github.com/jlengrand/helidon.git
synced 2026-03-10 08:21:17 +00:00
* Initial gRPC server/framework implementation * Fixes for corrupted source files * Checkstyle fix * POM changes based on PR comments by @romain-grecourt * Added missing gRPC documentation sections * Change gRPC module to versions 1.0.4-SNAPSHOT * Change netty tcnative to 2.0.22.Final * Changes from Helidon review meeting (#84) * Initial gRPC server/framework implementation * Remove @author JavaDoc tags * Rename gRPC server `ServiceDescriptor.Config` interface to `ServiceDescriptor.Rules` and `MethodDescriptor.Config` to `MethodDescriptor.Rules` based on pull-request feedback. Also changed corresponding variable names, parameter names and documentation usage. * Split gRPC metrics out of the gRPC server module into its own module. * Change configuration examples in gRPC documentation to yaml * Fix gRPC security documentation error * gRPC metrics clean-up based on review comments * gRPC metrics docs change * Change gRPC security example configuration to use yaml * Remove the custom `BasicAuthCallCredentials` class from the security examples #90 * Change gRPC interceptor priority to be an `int` #91 * Fixing checkstyle errors * Fix incorrect comment in gRPC examples basic `Server.java` Change gRPC Open Tracing example to build the `Tracer` from config * Checkstyle fix * Support the Helidon Prioritized interface as a way to specify gRPC interceptor priority. * Resolve merge conflict * Update the gRPC introduction doc to make it clear that Helidon gRPC is currently an experimental feature
99 lines
3.2 KiB
XML
99 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
|
|
~
|
|
~ 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>io.helidon.examples.grpc</groupId>
|
|
<artifactId>helidon-examples-grpc-project</artifactId>
|
|
<version>1.0.4-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>helidon-examples-grpc-common</artifactId>
|
|
<name>Helidon gRPC Server Examples ProtoBuf Services</name>
|
|
|
|
<description>
|
|
ProtoBuf generated gRPC services used in gRPC examples
|
|
</description>
|
|
|
|
<properties>
|
|
<mainClass>io.helidon.grpc.examples.common.GreetClient</mainClass>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.helidon.grpc</groupId>
|
|
<artifactId>helidon-grpc-server</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.helidon.grpc</groupId>
|
|
<artifactId>helidon-grpc-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.grpc</groupId>
|
|
<artifactId>grpc-netty</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.grpc</groupId>
|
|
<artifactId>grpc-stub</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.grpc</groupId>
|
|
<artifactId>grpc-services</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.grpc</groupId>
|
|
<artifactId>grpc-protobuf</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.helidon.common</groupId>
|
|
<artifactId>helidon-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<extensions>
|
|
<extension>
|
|
<groupId>kr.motd.maven</groupId>
|
|
<artifactId>os-maven-plugin</artifactId>
|
|
<version>${version.plugin.os}</version>
|
|
</extension>
|
|
</extensions>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
<goal>compile-custom</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|