有没有一种方法可以将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>

07-24 09:47