最近在弄maven项目 一直都想看看源码,于是乎有了今天这个东西

首先你在 你的 maven中的 setting.xml中配置

<profile>  
<id>downloadSources</id>
<properties>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</properties>
</profile>

第二添加 这个配置

<activeProfiles> 
<activeProfile>downloadSources</activeProfile>
</activeProfiles>

在xml的最下边


还有一个方式是 在myeclipse 中点击windows >>preferences>>myeclipse>>maven4myeclipse >>

勾选download artifact source 和 javadoc 也可以实现