suztomo commented on pull request #13765:
URL: https://github.com/apache/beam/pull/13765#issuecomment-768750812
The netty's problem is easy one.
```
(io.netty:netty-buffer:4.1.51.Final)
io.netty.buffer.PooledByteBufAllocator's method <init>(boolean, int, int, int,
int, int, int, boolean) is not found;
referenced by 1 class file
io.grpc.netty.Utils (io.grpc:grpc-netty:1.35.0)
Cause:
Dependency conflict: io.netty:netty-buffer:4.1.51.Final does not define
io.netty.buffer.PooledByteBufAllocator's method <init>(boolean, int, int, int,
int, int, int, boolean) but io.netty:netty-buffer:4.1.52.Final defines it.
selected:
org.apache.beam:beam-sdks-java-io-google-cloud-platform:jar:2.29.0-SNAPSHOT /
io.netty:netty-handler:4.1.51.Final (compile) /
io.netty:netty-buffer:4.1.51.Final (compile)
unselected:
org.apache.beam:beam-sdks-java-io-google-cloud-platform:jar:2.29.0-SNAPSHOT /
io.grpc:grpc-netty:1.35.0 (compile) / io.netty:netty-codec-http2:4.1.52.Final
(compile) / io.netty:netty-buffer:4.1.52.Final (compile)
```
"io.grpc:grpc-netty:1.35.0" is not compatible with
"io.netty:netty-buffer:4.1.51.Final". Just upgrade the [netty_version in
BeamModulePlugin.groovy](https://github.com/apache/beam/blob/master/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy#L450)
to "io.netty:netty-buffer:4.1.52.Final"
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]