编写代码的时有时候需要引入第三方jar包,而且有时候有研究源码的需要,这就需要下载jar包对应的源码和Javadoc文档,用maven命令可以实现这一需求,主要有如下3种方法,但是有可能一些文件没有源代码或者javadocs
1、在cmd中进入,进入到项目对应的pom.xml目录中,然后执行以下命令:
mvn dependency:sources mvn dependency:resolve -Dclassifier=javadoc
第一个命令是尝试下载在pom.xml中依赖的文件的源代码,第二个命令:是尝试下载对应的javadocs
2、通过配置文件添加
打开maven配置文件 setting.xml文件(.../.m2/settings.xml) 增加如下配置:
<profiles> <profile> <id>downloadSources</id> <properties> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> </properties> </profile> </profiles> <activeProfiles> <activeProfile>downloadSources</activeProfile> </activeProfiles>
3、在eclipse中配置
Window > Preferences > Maven
参考:http://blog.csdn.net/topwqp/article/details/8902863