有没有办法可以将 maven 配置为 始终 下载源代码和 javadocs?每次都指定-DdownloadSources=true -DdownloadJavadocs=true(这通常伴随着运行 mvn compile 两次,因为我第一次忘记了)变得相当乏味。
-DdownloadSources=true -DdownloadJavadocs=true
打开您的 settings.xml 文件~/.m2/settings.xml (如果不存在则创建它)。添加一个已添加属性的部分。然后确保 activeProfiles 包含新的配置文件。
~/.m2/settings.xml
<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>