andreybavt
andreybavt

Reputation: 1321

List SNAPSHOT dependencies

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

Answers (1)

Ondrej Burkert
Ondrej Burkert

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

Related Questions