vertx-stack
vertx-stack copied to clipboard
Convergence inconsistent resolution
the resolver seems to inconsistently resolve transitive, dependencies that are both optional and non optional. For instance
- resolving
io.vertx:vertx-stomp:3.1.0resolves toio.vertx:vertx-auth-common:3.1.0 - resolving
io.vertx:vertx-auth-common:3.1.0resolves to a list that containsio.vertx:vertx-core:jar:3.1.0
the io.vertx:vertx-core:jar:3.1.0 does not appear in the first resolution because it is filtered by an optional dependency like io.vertx:vertx-lang-groovy:3.1.0 although it should be retained as this is a direct dependency of io:vertx-auth-common:3.1.0
I believe this is how Aether works. I will check, but I'm not sure we can do anything (without reimplementing a resolver).