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
- 리눅스 설치
- vi명령어
- nexus3
- 유닉스
- 오라클 에러
- nexus maven
- NFS 구축
- vm
- Nexus 3 Repository
- 저장소
- bootjar 상속받기
- 스프링부트 상속
- maven 저장소
- 인텔리제이
- nfs
- 사설 저장소
- 오라클
- 자바 프로그래밍
- HTTP
- jar 상속받기
- 가상머신
- oracle
- java
- oracle error
- 리눅스
- nexus repository
- iftables
- 오라클 에러 정리
- bootJar
- 외부 프로젝트 상속
Archives
- Today
- Total
빽기의 코딩공부Story
[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기3 본문
■gradle 다운로드
■ 압축 풀기
■ 환경변수 설정
■ 프로젝트 생성
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn more about Gradle by exploring our samples at https://docs.gradle.org/6.7.1/samples
*/
plugins {
id 'maven'
}
repositories {
maven {
url "http://localhost:8081/repository/maven-public/"
}
}
uploadArchives {
repositories {
mavenDeployer {
repository(url: "http://localhost:8081/repository/maven-releases/") {
authentication(userName: nexusUsername, password: nexusPassword)
}
snapshotRepository(url: "http://localhost:8081/repository/maven-snapshots/") {
authentication(userName: nexusUsername, password: nexusPassword)
}
}
}
}
끝
'[OS] > [CentOS]' 카테고리의 다른 글
[Sonatype Nexus 3] CentOS 7 "Nexus 3" Maven 저장소 구축하기3 (0) | 2021.01.25 |
---|---|
[Sonatype Nexus 3] CentOS 7 "Nexus 3" Maven 저장소 구축하기1 (0) | 2021.01.25 |
[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기2 (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 |
Comments