본문 바로가기
카테고리 없음

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test) on project demo-inflearn-rest-api: There are test failures.

by fabxoe 2020. 1. 16.

https://fors.tistory.com/386

 

스프링부트 springboot mvn build test error 에러 해결

관련 글의 stackoverflow 링크 https://stackoverflow.com/questions/13170860/failed-to-execute-goal-org-apache-maven-pluginsmaven-surefire-plugin2-10test 링크를 타고 들어가면 다양한 답변이 나온다. 그..

fors.tistory.com

 

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

추가한다.

댓글