maven报错:org.apache.maven.plugins:maven-surefire-plugin:2.7.1:test (default-test) on project

      今天在部署maven的项目的时候报 org.apache.maven.plugins:maven-surefire-plugin:2.7.1:test(default-test) on project错误  具体的是以下错误信息:

[ERROR] Failed to execute goalorg.apache.maven.plugins:maven-surefire-plugin:2.7.1:test (default-test) onproject newProject: There are test failures.

[ERROR]

 [ERROR] -> [Help 1]

[ERROR]

[ERROR] To see the full stack traceof the errors, re-run Maven with the -e switch.

[ERROR] Re-run Maven using the -Xswitch to enable full debug logging.

[ERROR]

[ERROR] For more information aboutthe errors and possible solutions, please read the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

[ERROR]

[ERROR] After correcting the problems, youcan resume the build with the command

      这种每次Build 都是失败的,于是只能找办法解决,后来在网上找到了解决办法,在这里记录一下。。。遇到这种问题只需要在pom.xml加入以下代码就可以完美解决。。

    

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

 

        这个问题应该是测试文件出了错。。直接跳过测试就可以咯。。。

     

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值