spring

springboot mvn build test error

narafu 2022. 1. 8. 06:02


[1] maven 실행할 때 test skip
mvn package -P pom.xml -DskipTests

[2] plug in 추가

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



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