eclipse+maven 设置查看依赖jar的源码自动下载
2018-08-07 本文已影响0人
超哥哥的简书
我们查阅代码是发现二方库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>