일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- docker oracle12c
- svn 특정 리비전 사이 추출
- Oracle install
- svn load
- Remmina
- NEXUS
- svn log
- expected at least 1 bean which qualifies as autowire candidate
- VirtualBox
- svn 사용법
- 포스트그레스 설치
- xrdp
- docker 폐쇄망
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- taskkill
- Store password unencrypted
- svn update
- svn
- svn 변경된 파일 추출
- Failed to download metadata for repo 'appstream'
- grep
- ant
- WH question
- svn commit
- apt-get update 오류
- mysql dml
- javax.servlet.GenericFilter
- postgres install
- svn dump
Archives
- Today
- Total
기억의 습작
nexus에 jar 라이브러리 일괄 추가 본문
Nexus 서버에 jar 라이브러리를 한번에 올리는 방법
.m2/repository 디렉토리를 압축해서 리눅스 서버에 업로드한다.
mavenimport.sh 파일을 아래와 같이 만든다.
#!/bin/bash # copy and run this script to the root of the repository directory containing files # this script attempts to exclude uploading itself explicitly so the script name is important # Get command line params while getopts ":r:u:p:" opt; do case $opt in r) REPO_URL="$OPTARG" ;; u) USERNAME="$OPTARG" ;; p) PASSWORD="$OPTARG" ;; esac done find . -type f -not -path './mavenimport\.sh*' -not -path '*/\.*' -not -path '*/\^archetype\-catalog\.xml*' -not -path '*/\^maven\-metadata\-local*\.xml' -not -path '*/\^maven\-metadata\-deployment*\.xml' | sed "s|^\./||" | xargs -I '{}' curl -u "$USERNAME:$PASSWORD" -X PUT -v -T {} ${REPO_URL}/{} ; |
업로드 명령어
./mavenimport.sh -u ppusarida -p ppusarida123 -r http://ppusari.iptime.org:1234/nexus/content/repositories/releases/
728x90
반응형
LIST
'SCM (형상관리) > nexus' 카테고리의 다른 글
Nexus를 내 PC에 설치 (0) | 2021.09.10 |
---|