You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary
In Gradle, conditional dependency resolution currently fails when encountering relocation artifacts (e.g. io.quarkus:quarkus-resteasy-reactive-qute:3.15.1 -> io.quarkus:quarkus-rest-qute), due to setTransitive(false) being applied in the new resolver. This has surfaced in #49714, #49700.
Details
In the new Gradle component-variant–based resolver, conditional dependencies are resolved with setTransitive(false).
The relocation target artifact is not resolved, leading to failures (XXX did not resolve to any artifacts).
Expected Behavior
Relocation artifacts should be properly resolved to their target coordinates, and dependency matching should be done against the relocated GAV.