[Maven] 테스트때문에 패키징 실패할 때

갓김치·2021년 7월 13일
0

예외

목록 보기
16/28
post-custom-banner

상황

  • junit 테스트 케이스들이 fail 하면서 package도 fail함

해결

pom.xml

  • build - plugins 밑에 아래 추가
<!-- to skip test while packaging -->
<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-surefire-plugin</artifactId>
	<configuration>
		<skipTests>true</skipTests>
	</configuration>
</plugin>

출처

profile
갈 길이 멀다

0개의 댓글