maven同时下载源代码包命令 通常情况下,使用maven增加依赖时,它只下载项目依赖包的二进制文件,要想在同时下载源代码包值需要增加一个参数:mvn eclipse:eclipse -DdownloadSources=true; 此外,也可以使用maven命令:mvn dependency:sources 下载依赖包的源代码。from:http://blog.csdn.net/e5945/article/details/5960221