0

I am trying to compare pom.xml files from different projects. I plan to make a simple list of all direct dependencies listed explicitly in pom.xml and compare and merge them.

What is a good way to do this ?

sh87
  • 1,063
  • 10
  • 12

1 Answers1

0

On the command line:

$ mvn dependency:tree

See also List of dependency jar files in Maven

imhotap
  • 2,275
  • 1
  • 8
  • 16