springboot mvn build test error
2022. 1. 8. 06:02ㆍspring
[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>
스프링부트 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
'spring' 카테고리의 다른 글
Controller에서 ajax 배열 받기 (0) | 2022.01.09 |
---|---|
[Spring Security] Ajax Post 통신 시 403 에러 (0) | 2022.01.09 |
@ConfigurationProperties (0) | 2022.01.07 |
AJAX 파일업로드 & 미리보기 (0) | 2022.01.05 |
java.net.BindException: Address already in use: bind (0) | 2022.01.04 |