gpt4 book ai didi

java - Maven – 始终下载源代码和 javadoc

转载 作者:行者123 更新时间:2023-12-02 02:09:47 24 4
gpt4 key购买 nike

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

最佳答案

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

编辑:正如 Jingguo Yao 提到的,这仅适用于 Eclipse IDE - 也可以在您选择的 IDE 中进行配置。在 Elcipse 中,通过 Window -> Preferences -> Maven 菜单,尽管这可能必须在每个工作区级别以及全新的 Eclipse 安装中完成。

或者在单独的配置文件中配置 pom.xml 中的 maven-dependency-plugin 并根据需要运行它 - 将其保留在主构建中将导致构建时间(不必要地延长(更不用说空间)在像您的地方构建不需要源代码或 java 文档的节点。最好在某个组织或部门的父 pom.xml 中配置它,否则它会在不同的地方重复

关于java - Maven – 始终下载源代码和 javadoc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57334869/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com