mirror of https://github.com/grpc/grpc-java.git
netty: Include both x86 and Arm64 epoll as dependency for grpc-netty-shaded
This commit is contained in:
parent
dc6eacccbf
commit
b35506b144
|
|
@ -176,6 +176,7 @@ subprojects {
|
|||
|
||||
netty: "io.netty:netty-codec-http2:[${nettyVersion}]",
|
||||
netty_epoll: "io.netty:netty-transport-native-epoll:${nettyVersion}:linux-x86_64",
|
||||
netty_epoll_arm64: "io.netty:netty-transport-native-epoll:${nettyVersion}:linux-aarch_64",
|
||||
netty_proxy_handler: "io.netty:netty-handler-proxy:${nettyVersion}",
|
||||
|
||||
// Keep the following references of tcnative version in sync whenever it's updated
|
||||
|
|
|
|||
|
|
@ -18,7 +18,8 @@ sourceSets { testShadow {} }
|
|||
dependencies {
|
||||
implementation project(':grpc-netty')
|
||||
runtimeOnly libraries.netty_tcnative,
|
||||
libraries.netty_epoll
|
||||
libraries.netty_epoll,
|
||||
libraries.netty_epoll_arm64
|
||||
testShadowImplementation files(shadowJar),
|
||||
project(':grpc-testing-proto'),
|
||||
project(':grpc-testing'),
|
||||
|
|
|
|||
Loading…
Reference in New Issue