List of dependency jar files in Maven

后端 未结 9 2267
我在风中等你
我在风中等你 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:00

    Actually, for just the final list of jars, simply use

    mvn dependency:list
    

    Which is lot more simple than dependency:tree which is an overkill to simply get the final list as it shows detailed transitive tree and conflict resolution (with verbose).

提交回复
热议问题