编译Spring Boot过程中由于检查maven-checkstyle-plugin,提示如下信息:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:3.0.0:check(checkstyle-validation) on project spring-cloud-gateway-core: Failed duringcheckstyle execution: There are 47 errors reported by Checkstyle 8.18 withcheckstyle.xml ruleset. -> [Help 1]
经过测试,发现在x86架构的环境中,maven-checkstyle-plugin插件的检查会失败。由于本案例不涉及代码提交,建议去掉该插件以避免出现问题。
将maven-checkstyle-plugin插件部分的代码注释掉。
vim pom.xml
在第31行的下一行插入如下信息。
<!--
在第89行的下一行插入如下信息。
-->
mvn clean install -Dgpg.skip=true