Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Tomcat error-page version
- 프로젝트관리
- LAN WAN
- open cursors
- 경력개발자
- SW설계
- 구글캘린더 검색
- Value Object(VO)
- CBD 단점
- SpringBoot
- 소프트웨어설계
- 자바튜닝
- ASUS 공유기
- SI와 SM 차이점
- tvheadend
- 실해하지 않는
- USB-C충전
- 객체설계
- USB-C to HDMI 아답터
- 네트워크 기본개념
- EXK
- angular 6
- Data Transfer Object(DTO)
- docker 네트워크
- sonoff
- SW분석
- LG그램2017
- 자바스크립트 JQuery
- maven #junit
- 자바개발
Archives
- Today
- Total
대빵's Blog
Maven 과 junit 의 관계(Maven properties in Junit) 본문
maven clean test-compile install -DskipTests=true
=> test source compile 되고 install 시 test는 수행되지 않는다.
=> test code 가 compile 되었으므로 junit 을 수동으로 실행할 수는 있다.
maven clean test-compile install -Dmaven.skip.test=true
=> test source compile 도 안되고 install 시 test도 수행되지 않는다.
=> maven test-compile 했기 때문에 test를 compile 한다고 생각했지만
maven.skip.test 로 test를 skip 했기 때문에 test-compile 도 수행하지 않는다. 따라서 junit test를 할수 없다.
=> 이 경우 pom.xml 에 properties에 <maven.test.skip>true</maven.test.skip> 와 동일하게 수행된다.
'개발관련' 카테고리의 다른 글
Atomikos를 이용한 이기종 DB 트랜잭션(Springboot + Mybatis) - 2. Application 환경구성 및 샘플코드 (0) | 2019.08.26 |
---|---|
Atomikos를 이용한 이기종 DB 트랜잭션(SpringBoot + Mybatis) - 1.환경구성 (0) | 2019.08.26 |
원노트에 코드블록 이쁘게 삽입하기 (0) | 2019.01.17 |
CORS(Cross-Origin Resource Sharing) 정리 (0) | 2019.01.16 |
Hyper-V 에서 docker 네트워크 설정하기 (0) | 2018.12.21 |