This message was deleted.
# community-support
s
This message was deleted.
s
Do I really need to resolve dependencies and artifact separately, and them somehow associate them manually via their IDs?
t
What's your usecase? Can you use ResolvedConfiguration which I believe gives you both the dependency hierarchy and its artifacts? (but not the details on the resolved variants) The ArtifactCollection will give you similar information but also includes variants. If you need information specific to the resolution result (such as the selection reason) then it looks like you'd have to re-pair them yes 🤷‍♂️
s
I need to check the classifier of a Maven JAR artifact that was resolved. Yes, I could use
ResolvedConfiguration
. I'm just surprised that I indeed seem to need to associate resolved artifacts manually to resolved dependencies, instead of just saying "give me the resolved artifact for this resolved dependency".