Skip to content

Commit

Permalink
Upgrade grpc to 1.59.1
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Dec 4, 2023
1 parent 8ae04ed commit c2fd072
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions config/etcd/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
requires com.google.common;
requires com.google.protobuf;
requires etcd4j;
requires grpc.api;
requires grpc.protobuf;
requires grpc.stub;
requires io.grpc;
requires io.grpc.protobuf;
requires io.grpc.stub;
requires io.helidon.common.media.type;
requires io.helidon.common;
requires java.logging;
Expand Down
2 changes: 1 addition & 1 deletion dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<version.lib.graphql-java>18.6</version.lib.graphql-java>
<version.lib.graphql-java.extended.scalars>18.3</version.lib.graphql-java.extended.scalars>
<version.lib.gson>2.9.0</version.lib.gson>
<version.lib.grpc>1.57.1</version.lib.grpc>
<version.lib.grpc>1.59.1</version.lib.grpc>
<version.lib.guava>32.0.1-jre</version.lib.guava>
<version.lib.h2>2.2.220</version.lib.h2>
<version.lib.hamcrest>1.3</version.lib.hamcrest>
Expand Down
6 changes: 3 additions & 3 deletions webserver/grpc/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@SuppressWarnings({ "requires-automatic", "requires-transitive-automatic" })
module io.helidon.webserver.grpc {

requires grpc.protobuf.lite;
requires io.grpc.protobuf.lite;
requires io.helidon.builder.api;
requires io.helidon.webserver.http2;
requires java.logging;
Expand All @@ -40,8 +40,8 @@
requires static io.helidon.config.metadata;

requires transitive com.google.protobuf;
requires transitive grpc.api;
requires transitive grpc.stub;
requires transitive io.grpc;
requires transitive io.grpc.stub;
requires transitive io.helidon.common.config;

exports io.helidon.webserver.grpc;
Expand Down

0 comments on commit c2fd072

Please sign in to comment.