maven 下载源码eclipse的配置
1、在eclipse使用maven 下载源码包需要更改 D:\apache-maven-3.2.1-bin\apache-maven-3.2.1\conf 目录下
的 settings.xml 文件, 在文件中加入:
<profile> <id>downloadSources</id> <properties> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> </properties> </profile>
<activeProfiles> <activeProfile>downloadSources</activeProfile> </activeProfiles>
两行配置
2、配置eclipse:
Window > Preferences > Maven and checking the "Download Artifact Sources" and "Download Artifact JavaDoc" 选择。
3、pom.xml 文件 右击 RUN AS eclipse:clean eclipse:eclipse -DdownloadSources=true 命令即可。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。