Skip to content

mvn multimodule

GunSik Choi edited this page Apr 22, 2016 · 3 revisions

설정: http://www.codetab.org/apache-maven-tutorial/maven-multi-module-project/

실행:

mvn install -Dmaven.test.skip=true // 패키지 생성을 하지 않을 경우 sub-module 실행 오류 발생
mvn test -pl sub-module -Dtest=ClassTest // 지정 테스트 클래스 실행
mvn test -pl sub-module -Dtest=ClassTest#testMethod* // 지정 테스트 클래스의 테스트 실행
mvn test -pl sub-module // 서브모듈 실행
mvn test // 전체 모듈 테스트 실행

Clone this wiki locally