Files
helidon/microprofile/grpc/server/src/main/java/module-info.java
Bryan Atsatt 6b81f4a3a7 Upgrade config libraries (#1159)
* Removed com.google.protobuf:protobuf-java dependency; it becomes 4th party as it is used by io.grpc:grpc-protobuf.

* Updated com.typesafe:config version from 1.3.3 to 1.4.0.

* Removed unnecessary junit dependency.

* Updated jgit from 4.9.0.201710071750-r to 5.5.1.201910021850-r.

* Updated etcd4j from 2.16.0 to 2.17.0.

* Change jgit version to v4.11.9.201909030838-r.

* Change jgit version to 4.11.9.201909030838-r.

* Change jgit version to 4.9.9.201903122025-r.

* Add com:jcraft.jsch:0.1.55 dependency to update version used by jgit.

* Update automatic module "protobuf.java" name to "com.google.protobuf".
2019-12-17 13:15:52 -08:00

40 lines
1.4 KiB
Java

/*
* 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.
*/
/**
* gRPC microprofile server module
*/
module io.helidon.microprofile.grpc.server {
exports io.helidon.microprofile.grpc.server;
exports io.helidon.microprofile.grpc.server.spi;
requires transitive io.helidon.grpc.server;
requires transitive io.helidon.microprofile.grpc.core;
requires io.helidon.common.serviceloader;
requires transitive io.grpc;
requires grpc.protobuf.lite;
requires com.google.protobuf;
requires java.logging;
uses io.helidon.microprofile.grpc.server.GrpcServerCdiExtension;
uses io.helidon.microprofile.grpc.server.AnnotatedServiceConfigurer;
provides javax.enterprise.inject.spi.Extension
with io.helidon.microprofile.grpc.server.GrpcServerCdiExtension;
}