Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- maven 저장소
- nexus maven
- 저장소
- nfs
- nexus3
- vm
- nexus repository
- java
- 인텔리제이
- 오라클 에러
- NFS 구축
- iftables
- vi명령어
- oracle
- bootjar 상속받기
- 오라클
- 사설 저장소
- HTTP
- 가상머신
- jar 상속받기
- 외부 프로젝트 상속
- oracle error
- 리눅스 설치
- Nexus 3 Repository
- 자바 프로그래밍
- 스프링부트 상속
- 유닉스
- 오라클 에러 정리
- bootJar
- 리눅스
Archives
- Today
- Total
빽기의 코딩공부Story
[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기2 본문
■ Maven 설치
■ 사용자경로 이동
■ pom.xml 작성
<project>
<modelVersion> 4.0.0 </modelVersion>
<groupId> com.example </groupId>
<artifactId> nexus-proxy </artifactId>
<version> 1.0-SNAPSHOT </version>
<dependencies>
<dependency>
<groupId> junit </groupId>
<artifactId> junit </artifactId>
<version> 4.10 </version>
</dependency>
</dependencies>
</project>
■ setting.xml 작성
<settings>
<mirrors>
<mirror>
<!--This sends everything else to /public -->
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8081/repository/maven-proxy-test/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>nexus</id>
<!--Enable snapshots for the built in central repo to direct -->
<!--all requests to nexus via the mirror -->
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<!--make the profile active all the time -->
<activeProfile>nexus</activeProfile>
</activeProfiles>
<servers>
<server>
<id>nexus</id>
<username>admin</username>
<password>your-password</password>
</server>
</servers>
</settings>
■ mvn package
■ Nexus proxy repository 확인하기
끝
'[OS] > [CentOS]' 카테고리의 다른 글
[Sonatype Nexus 3] CentOS 7 "Nexus 3" Maven 저장소 구축하기1 (0) | 2021.01.25 |
---|---|
[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기3 (0) | 2021.01.16 |
[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기1 (0) | 2021.01.15 |
[Sonatype Nexus 3] Windows 10 "Nexus 3" 설치하기 (0) | 2021.01.15 |
[Windows/Linux] 윈도우, 리눅스 명령어 비교 (4) | 2020.08.18 |
Comments