728x90
[Eclipse] Maven Skip Test 설정
Maven packaging without test.
Skip Tests...
Maven 패키징 작업을 하다보면 의도치 않게 Test 소스때문에 에러가 발생하여 패키징 작업이 Fail되는 경우가 있다.
이 경우 Maven 패키징 작업시 Skip Tests 해주면 되는데...
다음과 같은 pom.xml 설정으로 간단히 해결할 수 있다.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
또는,
maven package -DskipTests
명령으로도 가능하다.
728x90
'Development > Java' 카테고리의 다른 글
Class 'org.springbyexample.web.servlet.view.tiles2.TilesUrlBasedViewResolver' not found (0) | 2019.07.09 |
---|---|
Eclipse Console Log. 파일 저장 (0) | 2019.07.09 |
Spring Framework의 mvc에서 https▶ http 로 redirect 되는 문제 해결 방법 (0) | 2019.06.25 |
Spring Framework에서의 한글 깨짐 문제 (0) | 2019.06.18 |
RMI 서버/Client 실행시 UnmarshalException 발생 해결 방법 (0) | 2019.06.17 |
댓글