一、问题描述

搭建Spring boot项目,编译时报错

Maven学习-编译遇到‘src/checkstyle/checkstyle-suppressions.xml‘

 

从报错上看不出具体问题出在哪里,然后上午那个搜索下,发现问题在于pom.xml使用了错误的parent。

以上报错引用的parent是

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>

二、解决问题
将parent改为

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

 

相关文章:

  • 2021-09-07
  • 2021-08-25
  • 2021-05-12
  • 2022-01-30
  • 2021-08-03
  • 2022-12-23
  • 2021-04-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-04
  • 2021-10-25
相关资源
相似解决方案