Maven jar 파일 Local Repository 생성하여 추가Tools2013. 5. 24. 17:04
Table of Contents
local repository에 jar 파일을 추가시켜 사용 할 수 있다.
일반 적으로 local repository를 포함하는 .m2 폴더는 사용자 계정 폴더에 위치하고 있다.
추가를 위해서는 다음과 같은 명령어를 사용하게 된다.
Local Repository 추가 Maven 명령 옵션 설명
mvn install:install-file
명령어 예제
mvn install:install-file -Dfile=[파일 full경로] -DgroupId=[그룹아이디] -DartifactId=[artifactId] -Dversion=[버전정보] -Dpackaging=[jar] -DgeneratePom=true
mvn install:install-file -Dfile=D:\sam-1.76.jar -DgroupId=kogun82.repository -DartifactId=sam -Dversion=1.76 -Dpackaging=jar -DgeneratePom=true
위와 같이 정상적으로 local repository에 추가되었으면, 프로젝트 pom.xml에 다음과 같이 설정을 추가하여 jar 파일을 이용하면 된다.
<dependency>
<groupId>kogun82.repository</groupId>
<artifactId>sam</artifactId>
<version>1.76</version>
</dependency>
반응형
'Tools' 카테고리의 다른 글
Eclipse workspace 내에 RemoteSystemsTempFiles 생성 않게하기 (0) | 2014.05.09 |
---|---|
Eclipse 에서 JavaScript 파일 Validator 예외 처리하기 (0) | 2014.04.30 |
Maven 플러그인 설치 후 경고 처리 조치 (0) | 2013.05.24 |
Eclipse 에서 java.lang.OutOfMemoryError 에러 발생 시 조치 방법 (0) | 2012.11.28 |
Eclipse Splash 이미지 파일 변경 (0) | 2012.05.30 |
@kogun82 :: Ctrl+C&V 로 하는 프로그래밍
Korean BioInformation Center(KOBIC) Korea Research Institute of Bioscience & Biotechnology Address: #52 Eoeun-dong, Yuseong-gu, Deajeon, 305-806, KOREA +82-10-9936-2261 e-mail: kogun82@kribb.re.kr Blog: kogun82.tistory.com Homepage: www.kobic.re.kr
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!