Every time I build my Maven project with a clean ~.m2/ directory, Maven downloads a POM file which is the parent of one my dependencies. This parent pom has SNAPSHOT version.
My project has no SNAPSHOT dependencies at all, so I suspect one of my dependencies was incorrectly released having a parent pom with 'SNAPSHOT'. However, there are dozens of dependencies, so I'm not able to identify which one is causing Maven to pull that snapshot parent pom.
I have tried 'mvn dependency:tree' and also using the Maven enforcer plugin, but their output does not help identifying the culprit.
Is there a Maven command that will list the ancestor poms of my project dependencies?