2010년 2월 7일 일요일

Maven에서 Deploy 하는 방법

Maven에서 Deploy하는 방법 해당 Maven 프로젝트 가있는
경로로 이동해서 "mvn deploy"를 하면 되지만
좀더 고급 스럽게(?) 하려면 아래와 같이 하면 됩니다.

mvn deploy:deploy-file -Dfile=C:/system/beyondj2ee.jar 
-DrepositoryId=beyondj2ee
-Durl=http://localhost:8082/nexus/content/repositories/beyondj2ee-snapshot
-DpomFile=c:/system/pom.xml


-Dfile : Nexus 또는 원격 레파지토리에 deploy할
라이브러리 파일 경로
-DrepositoryId : setting.xml에 원격 레파지토리를 위한
"server" 태그 아이디
예)
    <server>
<id>beyondj2ee</id>
<username>admin</username>
<password>******</password>
</server>
</servers>

-Durl : deploy할 원격 레파지토리 주소
-DpomFile : pom.xml 파일 경로

댓글 없음:

댓글 쓰기