maven-surefire-plugin 与 spring-boot 3.3 兼容的是哪个版本

问题描述 投票:0回答:1

出现此错误:

错误:类丢失:org/apache/maven/plugin/surefire/log/api/ConsoleLogger

我尝试了其他版本的surefire插件3.0.0-M5,但它也不起作用,出现同样的错误

  • Java版本:17
  • Spring Boot版本:3.3.0
  • Maven 编译器插件版本:3.8.1
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <version>3.2.5</version>
  <dependencies>
    <dependency>
      <groupId>org.junit.platform</groupId>
      <artifactId>junit-paltform-surefire-provider</artifactId>
      <version>1.1.0</version>
    </dependency>
  </dependencies>
</plugin>
java spring spring-boot maven-plugin maven-surefire-plugin
1个回答
0
投票

spring-boot-dependencies-3.3.0.pom
,更喜欢
3.2.5
maven-surefire-plugin
版本。

<properties>
  <!-- ... -->
  <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
  <!-- ... -->
</properties>
© www.soinside.com 2019 - 2024. All rights reserved.