Skip to content

Commit 48420c8

Browse files
committed
Added grpc dependencies
1 parent b61c2f0 commit 48420c8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<mysql-connector.version>8.4.0</mysql-connector.version>
1818
<okhttp.version>4.12.0</okhttp.version>
1919
<protobuf.version>4.27.2</protobuf.version>
20+
<grpc.version>1.65.0</grpc.version>
2021
<logback-classic.version>1.4.12</logback-classic.version>
2122
<testcontainers.version>1.20.0</testcontainers.version>
2223
</properties>
@@ -40,6 +41,23 @@
4041
<version>${protobuf.version}</version>
4142
</dependency>
4243

44+
<!-- gRPC -->
45+
<dependency>
46+
<groupId>io.grpc</groupId>
47+
<artifactId>grpc-netty-shaded</artifactId>
48+
<version>${grpc.version}</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>io.grpc</groupId>
52+
<artifactId>grpc-protobuf</artifactId>
53+
<version>${grpc.version}</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>io.grpc</groupId>
57+
<artifactId>grpc-stub</artifactId>
58+
<version>${grpc.version}</version>
59+
</dependency>
60+
4361
<dependency>
4462
<groupId>com.squareup.okhttp3</groupId>
4563
<artifactId>okhttp</artifactId>

0 commit comments

Comments
 (0)