我是靠谱客的博主 俊秀洋葱,最近开发中收集的这篇文章主要介绍Maven解决: Failed to execute goal org.codehaus.mojo:buildnumber-maven-plugin,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
[ERROR] Failed to execute goal org.codehaus.mojo:buildnumber-maven-plugin:1.0-beta-4:create (default) on project shiro-root: Cannot get the revision information from the scm repository :
解决:搜索插件:buildnumber-maven-plugin 注释掉类似下面的代码
<plugin> <!-- Add SVN Revision To A JAR Manifest - http://maven.apache.org/plugin-developers/cookbook/add-svn-revision-to-manifest.html --> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.0-beta-4</version> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> </configuration> </plugin>
最后
以上就是俊秀洋葱为你收集整理的Maven解决: Failed to execute goal org.codehaus.mojo:buildnumber-maven-plugin的全部内容,希望文章能够帮你解决Maven解决: Failed to execute goal org.codehaus.mojo:buildnumber-maven-plugin所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复