gpt4 book ai didi

git - Maven 找不到 .git (dotGitDirectory)

转载 作者:太空狗 更新时间:2023-10-29 13:17:37 31 4
gpt4 key购买 nike

我有一个类似于问题的问题 here , 但没有答案。在 Maven 项目中具有以下结构(这是标准的):

parent-pom - which is a parent for all others
|_reactor - which is a concrete project, parent-pom is a parent
|_module_1 - reactor is a parent
|_module_2
...
|_module_n

git-commit-id-plugin 是在 parent-pom 中配置的,别处没有。

直到最近一切都很好:我能够使用 mvn clean install 分别构建整个 reactor 项目和所有模块。然后我添加了一个新模块(比方说 module_n1),我相信构建在大规模 merge 之前一直运行良好。现在我得到以下情况: react 堆构建成功,每个模块分别从 1 到 n 构建成功。但是 module_n1 失败并出现以下错误:

 [ERROR] Failed to execute goal pl.project13.maven:git-commit-id-plugin:2.1.7:revision (default) on project module_n1: .git directory could not be found! Please specify a valid [dotGitDirectory] in your pom.xml

reactor 模块下有一个.git 文件夹。作为实验,我删除了它并在其他模块中得到了同样的错误。

某个特定模块在构建过程中找不到 .git 文件夹的原因可能是什么?

谢谢。

最佳答案

自版本 2.0.4 以来,标志 failOnNoGitDirectory 默认为 true。将标志设置为 false 以确保在 .git 目录不存在时跳过此目标。

<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<configuration>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
</configuration>
</plugin>
</plugins>
</build>

该插件具有在项目的当前目录和父目录中搜索 .git 存储库的内部逻辑。如果多模块项目位于同一个 git 存储库下,我不会太担心。

关于git - Maven 找不到 .git (dotGitDirectory),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31173467/

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