Hi,
When using Vert.x 4.0.3, I notice the following warning:
To get rid of it we have to add a runtime dependency to the following Maven artifact:
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns-native-macos</artifactId>
<classifier>osx-x86_64</classifier>
</dependency>
As we use the BOM vertx-stack-depchain (as previously asked on this list) in our dependency management, we just provide the Vert.x version to use in our dependency management declaration.
But the version of Netty is not declared in that BOM, so how can we declare that dependency to the netty-resolver-dns-native-macos artifact so it use the same version than the version Vert.x depends on ?
I currently had to manually look and write the 4.1.60.Final for Netty in my pom, but I was wondering if that can be done automatically, as there are high chances we forgot to update it when we will upgrade to a newer version of Vert.x .
Regards,
Laurent