使用MAVEN Install 项目的时候 报 org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test failed

在MAVEN install 项目时 出现如下异常:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test (default-test) on project xxx: There are test failures.

可以看出是 maven-surefire-plugin:2.18.1 插件问题,解决方法如下:

在pom.xml文件中添加:


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


我的pom.xml文件如下:


		打包名称
		
			
				org.springframework.boot
				spring-boot-maven-plugin
			
             
			
				org.apache.maven.plugins
				maven-war-plugin
				2.6
				
					false
				
			
			
				org.apache.maven.plugins
				maven-surefire-plugin
				2.18.1
				
					true
				
			

			
				org.mybatis.generator
				mybatis-generator-maven-plugin
				1.3.2
				
					true
					true
				
			

		
	

再 install 一次 ,成功! 

你可能感兴趣的:(maven)