List of dependency jar files in Maven

后端 未结 9 2277
我在风中等你
我在风中等你 2020-12-04 09:50

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

9条回答
  •  情书的邮戳
    2020-12-04 10:19

    This command will generate the dependencies tree of your maven project:

    $ mvn dependency:tree
    

    I am sure that you will like the result :-)

提交回复
热议问题