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
This might be a bug or might be a feature request, I'm not sure.
I'm developing a POC packaging type for a modular application, and in order to do so we have to perform some level of analysis on the dependency graph of the application. Specifically, we must use the dependency information of each artifact in order to connect up its modular dependencies. However, it seems that all instances of io.quarkus.maven.dependency.ResolvedDependency return an empty list for getDependencies(). It's not clear whether that information is lost during analysis, or if it is only available at an earlier phase, etc. But having the list be empty is unexpected.
The text was updated successfully, but these errors were encountered:
I set a breakpoint on the only constructor of ResolvedArtifactDependency which can possibly set a non-empty list on the deps field, and every list that is set at that point is empty. I also set a breakpoint at io.quarkus.maven.dependency.ResolvedDependencyBuilder#addDependency and it is never used during a normal build of the getting-started quickstart.
This might be a bug or might be a feature request, I'm not sure.
I'm developing a POC packaging type for a modular application, and in order to do so we have to perform some level of analysis on the dependency graph of the application. Specifically, we must use the dependency information of each artifact in order to connect up its modular dependencies. However, it seems that all instances of
io.quarkus.maven.dependency.ResolvedDependency
return an empty list forgetDependencies()
. It's not clear whether that information is lost during analysis, or if it is only available at an earlier phase, etc. But having the list be empty is unexpected.The text was updated successfully, but these errors were encountered: