我安装了Eclipse Neon,它已经安装了m2e插件。
在Window->Preferences->Maven->User Settings
我指定了C:\Users\Морф\.m2\settings.xml
的路径。该文件包含:
<profile>
<id>downloadSources</id>
<properties>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</properties>
</profile>
.....
<activeProfiles>
<activeProfile>downloadSources</activeProfile>
</activeProfiles>
但不会自动下载来源。我试过Maven-&gt;下载资源,但仍然没有。
我的Eclipse Mars使用相同的settings.xml
文件,所有来源都会自动下载到Eclipse Mars 中,因此文件正确。
那么,如何在Eclipse Neon中通过maven自动下载源代码?