maven install异常

maven install 异常信息:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.260 s
[INFO] Finished at: 2019-01-18T10:38:33+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.20.1:test (default-test) on project cxfin-timingtask-web: There are test failures.
[ERROR] 

 

解决方案:

在pom.xml中添加如下代码:

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

 

结果:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.984 s
[INFO] Finished at: 2019-01-18T10:42:35+08:00
[INFO] ------------------------------------------------------------------------

Process finished with exit code 0

 

posted @ 2019-01-18 10:43  忘川、彼岸  阅读(302)  评论(0编辑  收藏  举报