Reputation: 1321
Is there a plugin or any other way to list SNAPSHOT dependencies for a project? I just need the names of such dependencies and their versions (e.g org.my.company:1.1.1-SNAPSHOT)
Upvotes: 2
Views: 4740
Reputation: 7262
mvn dependency:list | grep -i snapshot
or
mvn dependency:tree -Dincludes=:::*-SNAPSHOT
https://maven.apache.org/plugins/maven-dependency-plugin/examples/filtering-the-dependency-tree.html
Upvotes: 7