Skip to content

Commit

Permalink
Add netty ARM64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Ambud Sharma committed Oct 4, 2022
1 parent 93fe718 commit 8461abd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions memq-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,24 @@
<version>${netty.version}</version>
<classifier>linux-x86_64</classifier>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty.version}</version>
<classifier>linux-aarch_64</classifier>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-kqueue</artifactId>
<version>${netty.version}</version>
<classifier>osx-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-tcnative-boringssl-static</artifactId>
Expand Down

0 comments on commit 8461abd

Please sign in to comment.