Failed during checkstyle execution: Unable to find suppressions file at location: src/checkstyle/checkstyle-suppressions.xml

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.6.RELEASE</version>

    </parent>

 

springboot的parent节点配置错误,则会报下面的错

 

[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:2.16:check (checkstyle-validation) on project test: Failed during checkstyle execution: Unable to find suppressions file at location: src/checkstyle/checkstyle-suppressions.xml: Could not find resource 'src/checkstyle/checkstyle-suppressions.xml'. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

 

时间: 2024-09-06 16:31:38

Failed during checkstyle execution: Unable to find suppressions file at location: src/checkstyle/checkstyle-suppressions.xml的相关文章

maven mvn Failed during checkstyle execution

maven 命令默认强制使用checkstyle, 造成 命令运行失败 并报错: Failed during checkstyle execution 关闭checkstyle,命令如下: mvn [target] -Dcheckstyle.skip

unable to copy the file to /etc/oratab

检查权限 [root@m2 tmp]# ls -ltr /etc/oratab  -rw-rw-r-- 1 grid oinstall 904 Apr 22 10:14 /etc/oratab 解决 chown oracle.oinstall  #出现了一些错误.#1 Unable to copy the file "rac2:/etc/oratab" to "/tmp/oratab.rac2" #因为rac2没有/etc/oratab这个文件,所以从rac1 rc

Yii中使用gii遇到“unable to write the file”

 Yii中使用gii遇到"unable to write the file" 显然这是因为gii没有权限来写文件,所以如果你按照http://www.yiichina.com/doc/guide/2.0/start-gii 这里和之前的步骤来做的话,你必须先把下面文件先删除: rm /var/www/html/basic/models/Country.php rm /var/www/html/basic/controllers/CountryController.php rm /v

Error:Execution failed for task &amp;#39;:app:mergeDebugResources&amp;#39;. &gt; Some file crunching failed, see logs for details

Android Studio 编译中断....   Error:Execution failed for task ':app:mergeDebugResources'. > Some file crunching failed, see logs for details   错误信息如上:   解决方案: drawable里面的图片格式保存不对,Android studio 当编译资源文件的时候(using AAPT(Android Asset Packaging Tool))会抛出异常, 只

m2eclipse报错:Plugin execution not covered by lifecy

   今天在导入以前写的maven项目时,遇到了一个问题,下面是pom.xml中的代码片段: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 <plugin>   <groupId>com.google.code.maven-replacer-plugin</groupId>   <artifactId>replacer</artifactId>   <ver

编译CDH Spark源代码

本文以Cloudera维护的Spark分支项目为例,记录跟新Spark分支以及编译Spark源代码的过程. 下载代码 在Github上fork Cloudera维护的Spark项目到自己的github账号里,对应的地址为https://github.com/javachen/spark. 下载代码: $ git clone https://github.com/javachen/spark 然后,切换到最新的分支,当前为 cdh5-1.3.0_5.4.0. $ cd spark $ git ch

CheckStyle, 强制你遵循编码规范

如今代码静态检查越来越重要,已经成为构建高质量软件的不可或缺的一个验证步骤.如果你使用的是java语言,那么CheckStyle则是一个利器. CheckStyle能够帮助程序员检查代码是否符合制定的规范.通过将CheckStyle的检查引入到项目构建中,可以强制让项目中的所有的开发者遵循制定规范,而不是仅仅停留在纸面上.如果发现代码违反了标准,比如类名未以大写开头.单个方法超过了指定行数.甚至单个方法抛出了3个以上的异常等.这些检查由于是基于源码的,所以不需要编译,执行速度快. CheckSt

svn: E215004: Authentication failed

Linux环境配置安装好SVN服务器后,输入命令: svn co svn:// IP : PORT 结果返回Authentication failed [root]@iZ23whn33Z conf]#svn co svn://115.29.250.111:3690 svn:E215004:Unable to connect to a repository at URL 'svn://115.29.250.111' svn:E215004:Authentication failed 可能出现这种问

在eclipse中使用checkstyle插件自动检查编码规范

编码|规范           CheckStyle是一个java代码规范检查工具.使用CheckStyle能够强制编程人员遵循某种代码规范.CheckStyle默认提供了对sun编程规范的支持.通过编写配置文件,可以增加自己的检查规范. CheckStyle的最新版本是3.5.从3.0开始,CheckStyle支持包括代码风格.代码结构.代码冗余.典型错误等更多的代码检查. CheckStyle通常和Ant配合使用.有许多CheckStyle的第三方插件,包括eclipse插件. CheckS