有没有一种方法可以将Maven配置为始终下载源代码和javadocs?每次都指定-DdownloadSources=true -DdownloadJavadocs=true
(通常与两次运行mvn编译一起进行,因为我第一次忘记了)变得很乏味。
最佳答案
打开您的settings.xml文件~/.m2/settings.xml
(如果不存在,请创建它)。添加具有添加的属性的部分。然后,确保activeProfiles包含新的配置文件。
<settings>
<!-- ... other settings here ... -->
<profiles>
<profile>
<id>downloadSources</id>
<properties>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>downloadSources</activeProfile>
</activeProfiles>
</settings>