새소식

Devops/etc

Nexus에 배포 + 가져오기 (3)

  • -

오늘 작업한내용을 간단하게 리마인더용으로 작성

 

1. nexus 설치 

2. 레파지토리 생성

3. 배포용 프로젝트 세팅

4. nexus에 배포

5. 호출용 프로젝트 세팅

 

Maven 설치

일단 배포용 프로젝트 세팅을 하기 전에 Maven을 설치하자

설치는 간단하다 다운받고 > 압축 풀고 원하는 경로에 위치 > 환경변수 세팅

사진 위주로 ㄱㄱ

 

maven 다운로드 : https://maven.apache.org/download.cgi

 

Maven – Download Apache Maven

Downloading Apache Maven 3.8.5 Apache Maven 3.8.5 is the latest release and recommended version for all users. The currently selected download mirror is https://dlcdn.apache.org/. If you encounter a problem with this mirror, please select another mirror. I

maven.apache.org

 



maven 설치가 끝났다

그리고 하나 해줄게 있는데 

setting.xml 파일을 작업해줘야한다

 

maven 경로 밑의 conf 폴더 밑에 생성해주고 setting.xml 파일을 만들고 밑의 내용을 입력하자 (있으면 추가)

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
   http://maven.apache.org/xsd/settings-1.0.0.xsd">

   <servers>
     <server>
       <id>to-snapshot</id>
       <username>admin</username>
       <password>     </password>
     </server>
   </servers>
 </settings>

id : 서버 설정 이름

username : 나는 nexus에 따로 유저를 신규생성 하지 않았으므로 admin으로 배포할것임

password : admin 계정의 비밀번호를 입력

'Devops > etc' 카테고리의 다른 글

Github Repository 이름 변경  (0) 2022.08.04
Nexus에 배포 + 가져오기 (5)  (0) 2022.05.05
Nexus에 배포 + 가져오기 (4)  (0) 2022.05.05
Nexus에 배포 + 가져오기 (2)  (0) 2022.05.05
Nexus에 배포 + 가져오기 (1)  (0) 2022.05.04
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.