Maven Dependency 포함한 jar 파일 생성Tools2019. 11. 4. 16:47
Table of Contents
1. dependency 추출하여 저장
dependency:copy-dependencies 실행하며, target 경로 아래에 dependency라는 폴더에 사용된던 라이브러리를 추출하여 저장
명령어
mvn dependency:copy-dependencies
2. dependency 포함하여 jar 파일 생성
pom.xml 파일에 아래와 같이 assembly 플러그인 내용을 추가
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
</project>
명령어
mvn assembly:assembly
-jar-with-dependencies 이름으로 생성된 파일이 dependency가 포함된 jar 파일 생성
반응형
'Tools' 카테고리의 다른 글
git에서 user.name, user.email 요구 장애 해결 (0) | 2020.04.06 |
---|---|
리눅스 환경에서 lombok 설치 후 getter/setter 장애 처리 방법 (0) | 2020.01.07 |
Maven Dependency 충돌 확인 명령어 (0) | 2017.05.02 |
Eclipse 4.5 RCP 프로젝트 4.6 불러오기 (0) | 2016.11.04 |
Eclipse workspace 내에 RemoteSystemsTempFiles 생성 않게하기 (0) | 2014.05.09 |
@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
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!