Using Maven 2, is there a way I can list out the jar dependencies as just the file names?
mvn dependency:build-classpath
can list the jar
This command will generate the dependencies tree of your maven project:
$ mvn dependency:tree
I am sure that you will like the result :-)