lhotari edited a comment on issue #8233:
URL: https://github.com/apache/pulsar/issues/8233#issuecomment-786134188
> Sorry it took some time but unshaded lib is colliding because of some
netty loop. So it cannot be used with this approach. Not sure should I close
this issue as it will not be resolved or to wait maybe some good idea comes
along.
@harissecic The Netty conflict might be addressable if the other code you
have is compatible with Netty 4.1.x. In that case, the Netty conflict might be
caused by "misaligned" versions which can be resolved by importing the
netty-bom input Maven's dependency management (or with Gradle's support for
BOM).
```
<properties>
<netty.version>4.1.51.Final</netty.version>
<!-- ... more ... -->
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- ... more ... -->
</dependencies>
</dependencyManagement>
```
You can ask for more help for such usage problems on [Pulsar
Slack](https://pulsar.apache.org/en/contact/).
I hope this helps.
----------------------------------------------------------------
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]