Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:2.17:check

错误

Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:2.17:check (checkstyle-validation) on project spring-boot-hello: 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]

解决办法

该问题产生的原因是:在pom.xml使用了错误的parent 。应该使用spring-boot-starter-parent而不是使用spring-boot-parent。

        org.springframework.boot
        spring-boot-starter-parent

你可能感兴趣的:(springboot)