일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- grep
- svn 변경된 파일 추출
- VirtualBox
- postgres install
- svn 사용법
- svn log
- svn update
- Failed to download metadata for repo 'appstream'
- apt-get update 오류
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- Store password unencrypted
- svn commit
- xrdp
- ant
- docker oracle12c
- Remmina
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- taskkill
- docker 폐쇄망
- mysql dml
- svn dump
- svn
- expected at least 1 bean which qualifies as autowire candidate
- Oracle install
- NEXUS
- svn 특정 리비전 사이 추출
- svn load
- WH question
- javax.servlet.GenericFilter
- 포스트그레스 설치
- Today
- Total
목록SCM (형상관리)/nexus (2)
기억의 습작
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) USERN..
설치방법 다운로드: http://maven.apache.org/download.cgi 톰캣이 설치된 경로 webapps 폴더 아래 nexus.war 파일명으로 카피 ( $ service tomcat start ) http://localhost:8080/nexus 접속 처음 계정은 admin/ admin123 백업방법 $ /usr/share/tomcat/sonatype-work/nexus 폴더를 전부 백업해서 옮기면 됨 사용방법 war파일 등록 http://localhost:8080/nexus 접속 후 로그인 Repositories → 3rd party → Artifact Upload 이동 GAV definition 을 from POM 으로 선택 select POM to Upload 클릭하여 설치하고자 하..