Roberto
Roberto

Reputation: 1

Resolving ALL maven dependencies

I've got big pom.xml with tons of dependencies and properties very often set to RELEASE or LATEST. I clean up my .m2/ directory and execute a "mvn -U clean install" command [successfully] and I got a certain number of artifacts with the relative version.

If I try and execute the "mvn dependency:resolve" plugin not all the dependencies are listed. A small number of artifacts is not present in the report.

How can I get the complete list of dependencies resolved using the plugin?

Upvotes: 0

Views: 415

Answers (1)

Try adding. -Dverbose=true

Usually, I put them into a tree as: mvn dependency:tree -Dverbose=true

Upvotes: 1

Related Questions