Skip to content

Commit

Permalink
chore: upgrade netty version (#82)
Browse files Browse the repository at this point in the history
Signed-off-by: Keran Yang <yangkr920208@gmail.com>
  • Loading branch information
KeranYang authored Nov 14, 2023
1 parent 893bf78 commit bd90619
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.numaproj.numaflow</groupId>
<artifactId>numaflow-java</artifactId>
<version>0.5.5</version>
<version>0.5.6</version>
<packaging>jar</packaging>

<name>numaflow-java</name>
Expand All @@ -23,7 +23,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<protobuf.version>3.21.8</protobuf.version>
<grpc.version>1.50.2</grpc.version>
<grpc.version>1.59.0</grpc.version>
<netty.version>4.1.100.Final</netty.version> <!-- match version grpc-netty depends on -->
<akka.version>2.7.0</akka.version>
<slf4j.version>2.0.7</slf4j.version>
Expand Down Expand Up @@ -121,6 +121,7 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty</artifactId>
<version>1.59.0</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
Expand All @@ -147,13 +148,17 @@
<version>${netty.version}</version>
<classifier>linux-x86_64</classifier>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-kqueue</artifactId>
<version>${netty.version}</version>
<classifier>osx-aarch_64</classifier>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
Expand Down

0 comments on commit bd90619

Please sign in to comment.