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

方案一:

pom文件添加以下

     
       org.apache.maven.plugins
       maven-surefire-plugin
       2.12.4
       
         true
       
    

方案二:

使用高版本springboot

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

 

你可能感兴趣的:(SpringBoot)