小编典典

Maven——总是下载源代码和javadocs

all

有没有办法可以将 maven 配置为 始终 下载源代码和 javadocs?每次都指定-DdownloadSources=true -DdownloadJavadocs=true(这通常伴随着运行 mvn compile 两次,因为我第一次忘记了)变得相当乏味。


阅读 66

收藏
2022-05-18

共1个答案

小编典典

打开您的 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>
2022-05-18