.git directory could not bu found! Please specify a valid [dotGitDirectory] in your pom.xml

.git  directory could not bu found! Please specify a valid [dotGitDirectory] in your pom.xml

使用maven 打包的时候,出现了上面的错误

参考  https://stackoverflow.com/questions/31173467/maven-cannot-find-git-dotgitdirectory

在 pom.xml 加上

    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>pl.project13.maven</groupId>
                <artifactId>git-commit-id-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>

打包成功,如果是 大型项目的源码打包,如果在 win下出现奇怪的其他错误,请到linux 系统下使用maven打包

当然也可以参考   https://blog.csdn.net/xubo245/article/details/51177616  , 复制一个  .git 文件 到项目目录下面。

 

 

 

 

 

 

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » .git directory could not bu found! Please specify a valid [dotGitDirectory] in your pom.xml