欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SpringBoot打包报错:Missing POM for org.apache.maven.surefire:surefire-junit3:jar

程序员文章站 2024-02-23 10:08:34
...

方案一:

pom文件添加以下

     <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-surefire-plugin</artifactId>
       <version>2.12.4</version>
       <configuration>
         <skipTests>true</skipTests>
       </configuration>
    </plugin>

方案二:

使用高版本springboot

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