我们查阅代码是发现二方库jar包的源码没有下载下来 , 这个时候需要我们手动设置下 eclipse :preference -> Maven如下图:
然后,设置我们Maven settings文件
找到conf文件夹,打开settings.xml文件,在该文件的最下端加上如下代码
<profile>
<id>downloadSources</id>
<properties>
<downloadSources>true</downloadSources>
<downloadJavaDocs>true</downloadJavaDocs>
</properties>
<activeProfiles><activeProfile>downloadSources</activeProfile></activeProfiles>
网友评论